Interface DashletService
- All Superinterfaces:
- com.google.gwt.user.client.rpc.RemoteService
- All Known Implementing Classes:
- DashletServiceImpl
@RemoteServiceRelativePath("dashlet")
public interface DashletService
extends com.google.gwt.user.client.rpc.RemoteService
The client side stub for the Dashlet Service. This service allows the
 handling of dashlets.
- Since:
- 8.2.3
- Author:
- Marco Meschieri - LogicalDOC
- 
Nested Class SummaryNested Classes
- 
Method SummaryModifier and TypeMethodDescriptionvoiddelete(long dashletId) get(long dashletId) Gets a dashletGets a dashletLoads all the dashlet definitionsvoidsave(GUIDashlet dashlet) Saves a dashletvoidsaveDashlets(List<GUIDashlet> dashlets) Saves the dashlet definitionsvoidsaveUserDashlets(List<GUIDashlet> dashlets) Saves the user's dashlet configuration
- 
Method Details- 
saveSaves a dashlet- Parameters:
- dashlet- the dashlet to save
- Throws:
- ServerException- an error happened in the server application
 
- 
getGets a dashlet- Parameters:
- dashletId- identifier of the dashlet
- Returns:
- the dashlet retrieved by the server application
- Throws:
- ServerException- an error happened in the server application
 
- 
saveDashletsSaves the dashlet definitions- Parameters:
- dashlets- the dashlets to save
- Throws:
- ServerException- an error happened in the server application
 
- 
loadDashletsLoads all the dashlet definitions- Returns:
- all the dashlets
- Throws:
- ServerException- an error happened in the server application
 
- 
saveUserDashletsSaves the user's dashlet configuration- Parameters:
- dashlets- the dashlets to save
- Throws:
- ServerException- an error happened in the server application
 
- 
getGets a dashlet- Parameters:
- name- the name of the dashlet
- Returns:
- the dashlet retrieved by the server application
- Throws:
- ServerException- an error happened in the server application
 
- 
delete- Throws:
- ServerException
 
 
-