View Javadoc
1   package fr.ifremer.dali.dto.referential;
2   
3   import fr.ifremer.quadrige3.ui.core.dto.CommentAware;
4   import fr.ifremer.quadrige3.ui.core.dto.referential.BaseReferentialDTO;
5   import javax.annotation.Generated;
6   
7   @Generated(value = "org.nuiton.eugene.java.SimpleJavaBeanTransformer", date = "Mon May 09 09:01:02 CEST 2022")
8   public interface DepartmentDTO extends CommentAware, BaseReferentialDTO {
9   
10      String PROPERTY_CODE = "code";
11  
12      String PROPERTY_DESCRIPTION = "description";
13  
14      String PROPERTY_EMAIL = "email";
15  
16      String PROPERTY_ADDRESS = "address";
17  
18      String PROPERTY_PHONE = "phone";
19  
20      String PROPERTY_COMMENT = "comment";
21  
22      String PROPERTY_PARENT_DEPARTMENT = "parentDepartment";
23  
24      String getCode();
25  
26      void setCode(String code);
27  
28      String getDescription();
29  
30      void setDescription(String description);
31  
32      String getEmail();
33  
34      void setEmail(String email);
35  
36      String getAddress();
37  
38      void setAddress(String address);
39  
40      String getPhone();
41  
42      void setPhone(String phone);
43  
44      String getComment();
45  
46      void setComment(String comment);
47  
48      DepartmentDTO getParentDepartment();
49  
50      void setParentDepartment(DepartmentDTO parentDepartment);
51  
52  } //DepartmentDTO