Skip to content

Instantly share code, notes, and snippets.

@Petros0
Last active June 9, 2019 17:51
Greetings request & response objects
@Data
@NoArgsConstructor
@AllArgsConstructor
class GreetingsRequest {
private String name;
}
@Data
@NoArgsConstructor
@AllArgsConstructor
class GreetingsResponse {
private String greeting;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment