Guest User

Untitled

a guest
May 25th, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. @Data
  2. @Builder
  3. @AllArgsConstructor
  4. @NoArgsConstructor
  5. @JsonRootName("os-stop")
  6. public class Stop {
  7. @Nullable
  8. @Enum(enumClass = StopType.class, message = "Invalid stop type, only supports SOFT or HARD."
  9. private String type;
  10. }
Add Comment
Please, Sign In to add comment