Advertisement
Guest User

Untitled

a guest
Jul 26th, 2017
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. public class ExtendedIndentityDto<T extends Serializable> extends IdentityDto<T> {
  2.  
  3. private static final long serialVersionUID = -3025130259294004119L;
  4.  
  5. private Integer activeCompanyId;
  6.  
  7. @NotNull
  8. public Integer getCompanyId() {
  9. return activeCompanyId;
  10. }
  11.  
  12. public void setCompanyId(Integer companyId) {
  13. this.activeCompanyId = companyId;
  14. }
  15.  
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement