Interface ContactService
-
- All Superinterfaces:
com.google.gwt.user.client.rpc.RemoteService
- All Known Implementing Classes:
ContactServiceImpl
@RemoteServiceRelativePath("contact") public interface ContactService extends com.google.gwt.user.client.rpc.RemoteService
The client side stub for the Contact Service. This service allows r/w operations on contacts.- Since:
- 6.0
- Author:
- Marco Meschieri - LogicalDOC
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static class
ContactService.Instance
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
delete(long[] ids)
Deletes a selection of contactsGUIContact
load(long id)
Loads a contact from the databaseGUIContact[]
parseContacts(boolean preview, String separator, String delimiter, boolean skipFirstRow, int firstName, int lastName, int email, int company, int phone, int mobile, int address)
Reads the contacts that are about to be imported from CSV filevoid
save(GUIContact contact)
Saves a contact in the database
-
-
-
Method Detail
-
delete
void delete(long[] ids) throws ServerException
Deletes a selection of contacts- Parameters:
ids
- identifiers of the contacts to delete- Throws:
ServerException
- an error happened in the server application
-
save
void save(GUIContact contact) throws ServerException
Saves a contact in the database- Parameters:
contact
- the contact to save- Throws:
ServerException
- an error happened in the server application
-
load
GUIContact load(long id) throws ServerException
Loads a contact from the database- Parameters:
id
- identifier of the contact- Returns:
- the contact retrieved by the server application
- Throws:
ServerException
- an error happened in the server application
-
parseContacts
GUIContact[] parseContacts(boolean preview, String separator, String delimiter, boolean skipFirstRow, int firstName, int lastName, int email, int company, int phone, int mobile, int address) throws ServerException
Reads the contacts that are about to be imported from CSV file- Parameters:
preview
- if the preview must be shownseparator
- the separator chardelimiter
- the fields delimiterskipFirstRow
- if the first row contains titles and mus be skippedfirstName
- the first namelastName
- the last nameemail
- the emailcompany
- the companyphone
- the phonemobile
- the mobile phoneaddress
- the address- Returns:
- the extracted contacts
- Throws:
ServerException
- an error happened in the server application
-
-