Skip to content

Instantly share code, notes, and snippets.

@Romeh
Created December 18, 2017 19:52
Show Gist options
  • Save Romeh/913f13f251fee4bb720b781f5f76d5e9 to your computer and use it in GitHub Desktop.
Save Romeh/913f13f251fee4bb720b781f5f76d5e9 to your computer and use it in GitHub Desktop.
/**
* @param <T> the service call response type
*/
@Getter
@Setter
@ToString
@EqualsAndHashCode
@Builder
public class ServiceResponse<T> implements Serializable {
private T response;
private boolean success ;
private String serviceOrigin;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment