Guest User

Untitled

a guest
Dec 14th, 2018
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. @Getter
  2. @Setter
  3. @EqualsAndHashCode(callSuper = false)
  4. @JsonIgnoreProperties(ignoreUnknown = true)
  5. public class BpmRequestModel extends RequestBaseModel {
  6. public String id;
  7. public String processId;
  8. public ExampleRequestModel example;
  9. }
  10.  
  11. @Getter
  12. @Setter
  13. @JsonInclude(JsonInclude.Include.NON_NULL)
  14. public class StartupProcessInfoRequestModel {
  15. private String code;
  16. private String id;
  17. }
  18.  
  19. this.setId(it.getId()); // no problems
  20. this.setProcessId(it.getProcessId()); // no problems
  21. this.setToBpm(); //problems here
Add Comment
Please, Sign In to add comment