◆ ContactProposal() [1/3]
org.turro.contacts.proposal.ContactProposal.ContactProposal |
( |
Contact |
proposal | ) |
|
◆ ContactProposal() [2/3]
org.turro.contacts.proposal.ContactProposal.ContactProposal |
( |
Contact |
proposal, |
|
|
String |
reason |
|
) |
| |
◆ ContactProposal() [3/3]
org.turro.contacts.proposal.ContactProposal.ContactProposal |
( |
Contact |
proposal, |
|
|
boolean |
exists |
|
) |
| |
◆ clearInactiveAttributes()
void org.turro.contacts.proposal.ContactProposal.clearInactiveAttributes |
( |
| ) |
|
Definition at line 171 of file ContactProposal.java.
172 Iterator<GenericAttribute> it = attributes.iterator();
173 while(it.hasNext()) {
174 if(!it.next().isActive()) {
◆ compareTo()
int org.turro.contacts.proposal.ContactProposal.compareTo |
( |
ContactProposal |
o | ) |
|
Definition at line 194 of file ContactProposal.java.
195 int result = CompareUtil.compare(proposal.
getName(), o.proposal.getName());
197 result = CompareUtil.compare(proposal.
getGlobalIdentifier(), o.proposal.getGlobalIdentifier());
200 CompareUtil.compare(this.toString(), o.toString());
◆ getAttributes()
List<GenericAttribute> org.turro.contacts.proposal.ContactProposal.getAttributes |
( |
| ) |
|
◆ getDescription()
String org.turro.contacts.proposal.ContactProposal.getDescription |
( |
| ) |
|
◆ getDestination()
Contact org.turro.contacts.proposal.ContactProposal.getDestination |
( |
| ) |
|
◆ getProposal()
Contact org.turro.contacts.proposal.ContactProposal.getProposal |
( |
| ) |
|
◆ getReason()
String org.turro.contacts.proposal.ContactProposal.getReason |
( |
| ) |
|
◆ isDuplicated()
boolean org.turro.contacts.proposal.ContactProposal.isDuplicated |
( |
| ) |
|
Definition at line 123 of file ContactProposal.java.
124 for(GenericAttribute ga : attributes) {
125 if(!ga.getRelated().isEmpty() && ga.duplication.equals(DuplicationType.NOT_ALLOWED)) {
◆ isNoAction()
boolean org.turro.contacts.proposal.ContactProposal.isNoAction |
( |
| ) |
|
◆ isProbablyNew()
boolean org.turro.contacts.proposal.ContactProposal.isProbablyNew |
( |
| ) |
|
Definition at line 114 of file ContactProposal.java.
115 for(GenericAttribute ga : attributes) {
116 if(!ga.getRelated().isEmpty() && !ga.duplication.equals(DuplicationType.ALLOW_DUPLICATES)) {
◆ isSureNew()
boolean org.turro.contacts.proposal.ContactProposal.isSureNew |
( |
| ) |
|
Definition at line 105 of file ContactProposal.java.
106 for(GenericAttribute ga : attributes) {
107 if(!ga.getRelated().isEmpty()) {
◆ reload()
void org.turro.contacts.proposal.ContactProposal.reload |
( |
| ) |
|
◆ setDestination()
void org.turro.contacts.proposal.ContactProposal.setDestination |
( |
Contact |
destination | ) |
|
Definition at line 68 of file ContactProposal.java.
69 if(destination ==
null && this.destination !=
null) {
70 for(GenericAttribute ga : attributes) {
74 this.destination = destination;
◆ setNoAction()
void org.turro.contacts.proposal.ContactProposal.setNoAction |
( |
boolean |
noAction | ) |
|
◆ setReason()
void org.turro.contacts.proposal.ContactProposal.setReason |
( |
String |
reason | ) |
|
The documentation for this class was generated from the following file: