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
-
Method Summary
Modifier and TypeMethodDescriptionvoid
Deletes a selection of contactsload
(long id) Loads a contact from the databaseparseContacts
(boolean preview, GUIParseContactsParameters parameters) Reads the contacts that are about to be imported from CSV filevoid
save
(GUIContact contact) Saves a contact in the databasevoid
Shares contacts among a set of users and groups
-
Method Details
-
delete
Deletes a selection of contacts- Parameters:
ids
- identifiers of the contacts to delete- Throws:
ServerException
- an error happened in the server application
-
save
Saves a contact in the database- Parameters:
contact
- the contact to save- Throws:
ServerException
- an error happened in the server application
-
load
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
List<GUIContact> parseContacts(boolean preview, GUIParseContactsParameters parameters) throws ServerException Reads the contacts that are about to be imported from CSV file- Parameters:
preview
- if it is just to see the extraction, do not saveparameters
- the rules to interpret the CSV- Returns:
- the extracted contacts
- Throws:
ServerException
- an error happened in the server application
-