◆ entityId()
Object org.turro.contacts.ContactService.entityId |
( |
| ) |
|
◆ getContact()
Contact org.turro.contacts.ContactService.getContact |
( |
| ) |
|
◆ getCreation()
Date org.turro.contacts.ContactService.getCreation |
( |
| ) |
|
◆ getEndDate()
Date org.turro.contacts.ContactService.getEndDate |
( |
| ) |
|
◆ getEventDate()
String org.turro.contacts.ContactService.getEventDate |
( |
| ) |
|
Definition at line 288 of file ContactService.java.
289 if(startDate !=
null && endDate !=
null) {
290 return EventDates.eventFormat(startDate, endDate);
291 }
else if(startDate !=
null) {
292 return I_.get(
"Starts") +
" " + EventDates.eventFormat(startDate);
293 }
else if(endDate !=
null) {
294 return I_.get(
"Ends") +
" " + EventDates.eventFormat(endDate);
◆ getFields()
FieldItSet org.turro.contacts.ContactService.getFields |
( |
| ) |
|
◆ getFieldValue()
Object org.turro.contacts.ContactService.getFieldValue |
( |
String |
label | ) |
|
◆ getIContact()
IContact org.turro.contacts.ContactService.getIContact |
( |
| ) |
|
◆ getId()
String org.turro.contacts.ContactService.getId |
( |
| ) |
|
◆ getImage()
String org.turro.contacts.ContactService.getImage |
( |
| ) |
|
Definition at line 280 of file ContactService.java.
281 FileAttach fileAttach =
new FileAttach(ContactsPU.getObjectPath(
this));
282 String faceFile = fileAttach.getPublicFile(
"/profile/face.png",
false);
283 return !Strings.isBlank(faceFile) ? faceFile :
null;
◆ getIResponsible()
IContact org.turro.contacts.ContactService.getIResponsible |
( |
| ) |
|
◆ getPeriodicity()
Periodicity org.turro.contacts.ContactService.getPeriodicity |
( |
| ) |
|
◆ getPlainText()
String org.turro.contacts.ContactService.getPlainText |
( |
| ) |
|
◆ getPrice()
double org.turro.contacts.ContactService.getPrice |
( |
| ) |
|
◆ getRelated()
Collection<IValueItEntity> org.turro.contacts.ContactService.getRelated |
( |
| ) |
|
◆ getRelatedURL()
String org.turro.contacts.ContactService.getRelatedURL |
( |
| ) |
|
◆ getResponsible()
Contact org.turro.contacts.ContactService.getResponsible |
( |
| ) |
|
◆ getRole()
◆ getSerializerMappings()
MappingSet org.turro.contacts.ContactService.getSerializerMappings |
( |
| ) |
|
Definition at line 324 of file ContactService.java.
325 MappingSet
set =
new MappingSet();
326 set.addMapping(ContactService.class, 1,
327 new String[] {
"title",
"creation",
"startDate",
"endDate",
"role",
"type" },
328 new String[] {
"thematic",
"text",
"contact",
"responsible",
"relatedURL",
"timesSent",
329 "price",
"tax",
"periodicity" });
330 set.addMapping(Contact.class, 2,
331 new String[] {
"id",
"name" },
◆ getStartDate()
Date org.turro.contacts.ContactService.getStartDate |
( |
| ) |
|
◆ getTax()
double org.turro.contacts.ContactService.getTax |
( |
| ) |
|
◆ getText()
String org.turro.contacts.ContactService.getText |
( |
| ) |
|
◆ getThematic()
String org.turro.contacts.ContactService.getThematic |
( |
| ) |
|
◆ getTimesSent()
int org.turro.contacts.ContactService.getTimesSent |
( |
| ) |
|
◆ getTitle()
String org.turro.contacts.ContactService.getTitle |
( |
| ) |
|
◆ getType()
String org.turro.contacts.ContactService.getType |
( |
| ) |
|
◆ getValues()
ValueItSet org.turro.contacts.ContactService.getValues |
( |
| ) |
|
◆ getWiki()
String org.turro.contacts.ContactService.getWiki |
( |
| ) |
|
◆ isEmpty()
boolean org.turro.contacts.ContactService.isEmpty |
( |
| ) |
|
Implements org.turro.jpa.entity.IDaoEntity.
Definition at line 244 of file ContactService.java.
245 return Strings.isBlank(title) || Strings.isBlank(text) || role ==
null ||
246 Strings.isBlank(type) || Strings.isBlank(thematic) || Strings.isBlank(relatedURL) ||
247 contact ==
null || responsible ==
null;
◆ isInBusiness()
boolean org.turro.contacts.ContactService.isInBusiness |
( |
IContact |
worker | ) |
|
◆ setContact()
void org.turro.contacts.ContactService.setContact |
( |
Contact |
contact | ) |
|
◆ setCreation()
void org.turro.contacts.ContactService.setCreation |
( |
Date |
creation | ) |
|
◆ setEndDate()
void org.turro.contacts.ContactService.setEndDate |
( |
Date |
endDate | ) |
|
◆ setIContact()
void org.turro.contacts.ContactService.setIContact |
( |
IContact |
contact | ) |
|
Definition at line 266 of file ContactService.java.
267 this.contact = contact !=
null ? (Contact) contact.getContact() :
null;
◆ setId()
void org.turro.contacts.ContactService.setId |
( |
String |
id | ) |
|
|
protected |
◆ setIResponsible()
void org.turro.contacts.ContactService.setIResponsible |
( |
IContact |
responsible | ) |
|
Definition at line 274 of file ContactService.java.
275 this.responsible = responsible !=
null ? (Contact) responsible.getContact() :
null;
◆ setPeriodicity()
void org.turro.contacts.ContactService.setPeriodicity |
( |
Periodicity |
periodicity | ) |
|
◆ setPrice()
void org.turro.contacts.ContactService.setPrice |
( |
double |
price | ) |
|
◆ setRelatedURL()
void org.turro.contacts.ContactService.setRelatedURL |
( |
String |
relatedURL | ) |
|
◆ setResponsible()
void org.turro.contacts.ContactService.setResponsible |
( |
Contact |
responsible | ) |
|
◆ setRole()
◆ setStartDate()
void org.turro.contacts.ContactService.setStartDate |
( |
Date |
startDate | ) |
|
◆ setTax()
void org.turro.contacts.ContactService.setTax |
( |
double |
tax | ) |
|
◆ setText()
void org.turro.contacts.ContactService.setText |
( |
String |
text | ) |
|
◆ setThematic()
void org.turro.contacts.ContactService.setThematic |
( |
String |
thematic | ) |
|
◆ setTimesSent()
void org.turro.contacts.ContactService.setTimesSent |
( |
int |
timesSent | ) |
|
◆ setTitle()
void org.turro.contacts.ContactService.setTitle |
( |
String |
title | ) |
|
◆ setType()
void org.turro.contacts.ContactService.setType |
( |
String |
type | ) |
|
◆ setWiki()
void org.turro.contacts.ContactService.setWiki |
( |
String |
wiki | ) |
|
The documentation for this class was generated from the following file: