Created
December 18, 2017 19:52
-
-
Save Romeh/913f13f251fee4bb720b781f5f76d5e9 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* @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