Commit 84beae90 authored by Filipe de Lima Brito's avatar Filipe de Lima Brito

Update Spotlight.java

parent 60cd7298
...@@ -11,6 +11,8 @@ public abstract class Spotlight { ...@@ -11,6 +11,8 @@ public abstract class Spotlight {
public abstract String getType(); public abstract String getType();
public abstract String getStatus();
public static Spotlight.Builder builder() { public static Spotlight.Builder builder() {
return new AutoValue_Spotlight.Builder(); return new AutoValue_Spotlight.Builder();
} }
...@@ -24,6 +26,8 @@ public abstract class Spotlight { ...@@ -24,6 +26,8 @@ public abstract class Spotlight {
public abstract Builder setType(String type); public abstract Builder setType(String type);
public abstract Builder setStatus(String status);
public abstract Spotlight build(); public abstract Spotlight build();
} }
} }
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment