1 package org.kuali.coeus.common.api.rolodex;
2
3 import org.kuali.coeus.sys.api.model.Inactivatable;
4
5 public interface RolodexContract extends Inactivatable {
6
7 Integer getRolodexId();
8
9 String getAddressLine1();
10
11 String getAddressLine2();
12
13 String getAddressLine3();
14
15 String getCity();
16
17 String getComments();
18
19 String getCountryCode();
20
21 String getCounty();
22
23 Boolean getDeleteFlag();
24
25 String getEmailAddress();
26
27 String getFaxNumber();
28
29 String getFirstName();
30
31 String getLastName();
32
33 String getMiddleName();
34
35 String getOrganization();
36
37 String getOwnedByUnit();
38
39 String getPhoneNumber();
40
41 String getPostalCode();
42
43 String getPrefix();
44
45 boolean getSponsorAddressFlag();
46
47 String getSponsorCode();
48
49 String getState();
50
51 String getSuffix();
52
53 String getTitle();
54
55 String getCreateUser();
56
57 String getFullName();
58 }