Package com.logicaldoc.web.service
Class SystemServiceImpl
- java.lang.Object
-
- javax.servlet.GenericServlet
-
- javax.servlet.http.HttpServlet
-
- com.google.gwt.user.server.rpc.AbstractRemoteServiceServlet
-
- com.google.gwt.user.server.rpc.RemoteServiceServlet
-
- com.logicaldoc.web.service.SystemServiceImpl
-
- All Implemented Interfaces:
com.google.gwt.user.client.rpc.RemoteService
,com.google.gwt.user.server.rpc.SerializationPolicyProvider
,SystemService
,Serializable
,javax.servlet.Servlet
,javax.servlet.ServletConfig
public class SystemServiceImpl extends com.google.gwt.user.server.rpc.RemoteServiceServlet implements SystemService
Implementation of the SystemService- Since:
- 6.0
- Author:
- Matteo Caruso - LogicalDOC
- See Also:
- Serialized Form
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface com.logicaldoc.gui.frontend.client.services.SystemService
SystemService.Instance
-
-
Constructor Summary
Constructors Constructor Description SystemServiceImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
confirmUpdate()
Confirms the last updateboolean
disableTask(String taskName)
Disables the taskboolean
enableTask(String taskName)
Enables the taskGUIValue[]
getPlugins()
Retrieves all plug-insGUIParameter[][]
getStatistics(String locale)
Retrieves all the statistics parameters.GUITask
getTaskByName(String taskName, String locale)
Retrieves a specific task by its nameGUITask[]
loadTasks(String locale)
Retrieves all tasks.void
restart()
Restarts the applicationGUITask
saveTask(GUITask task, String locale)
Saves the taskGUIHistory[]
search(String userName, Date from, Date till, int maxResult, String historySid, String[] event, Long rootFolderId)
void
setGUILanguageStatus(String language, boolean active)
Changes the activation status of a languageboolean
startTask(String taskName)
Starts the task execution.boolean
stopTask(String taskName)
Stops the task execution.-
Methods inherited from class com.google.gwt.user.server.rpc.RemoteServiceServlet
getSerializationPolicy, init, processCall, processCall, processPost
-
-
-
-
Method Detail
-
disableTask
public boolean disableTask(String taskName) throws ServerException
Description copied from interface:SystemService
Disables the task- Specified by:
disableTask
in interfaceSystemService
- Parameters:
taskName
- The task name- Returns:
- True, if the task is correctly disabled
- Throws:
ServerException
- error in the server application
-
enableTask
public boolean enableTask(String taskName) throws ServerException
Description copied from interface:SystemService
Enables the task- Specified by:
enableTask
in interfaceSystemService
- Parameters:
taskName
- The task name- Returns:
- True, if the task is correctly enabled
- Throws:
ServerException
- an error happened in the server applications
-
getStatistics
public GUIParameter[][] getStatistics(String locale) throws ServerException
Description copied from interface:SystemService
Retrieves all the statistics parameters.- The first array is the Repository statistics.
- The second array is the Documents statistics.
- The third array is the Folders statistics.
- The fourth array contains the last run date.
- Specified by:
getStatistics
in interfaceSystemService
- Parameters:
locale
- The current user locale- Returns:
- the statistics
- Throws:
ServerException
- an error happened in the server application
-
getTaskByName
public GUITask getTaskByName(String taskName, String locale) throws ServerException
Description copied from interface:SystemService
Retrieves a specific task by its name- Specified by:
getTaskByName
in interfaceSystemService
- Parameters:
taskName
- The task namelocale
- The current user locale- Returns:
- the task retrieved by the server application
- Throws:
ServerException
- an error happened in the server application
-
loadTasks
public GUITask[] loadTasks(String locale) throws ServerException
Description copied from interface:SystemService
Retrieves all tasks.- Specified by:
loadTasks
in interfaceSystemService
- Parameters:
locale
- The current user locale- Returns:
- the tasks
- Throws:
ServerException
- an error happened in the server application
-
saveTask
public GUITask saveTask(GUITask task, String locale) throws ServerException
Description copied from interface:SystemService
Saves the task- Specified by:
saveTask
in interfaceSystemService
- Parameters:
task
- The task to savelocale
- The current user locale- Returns:
- the saved task
- Throws:
ServerException
- an error happened in the server application
-
search
public GUIHistory[] search(String userName, Date from, Date till, int maxResult, String historySid, String[] event, Long rootFolderId) throws ServerException
- Specified by:
search
in interfaceSystemService
- Throws:
ServerException
-
startTask
public boolean startTask(String taskName)
Description copied from interface:SystemService
Starts the task execution.- Specified by:
startTask
in interfaceSystemService
- Parameters:
taskName
- The task name- Returns:
- True, if the task is correctly started.
-
stopTask
public boolean stopTask(String taskName)
Description copied from interface:SystemService
Stops the task execution.- Specified by:
stopTask
in interfaceSystemService
- Parameters:
taskName
- The task name- Returns:
- True, if the task is correctly stopped.
-
setGUILanguageStatus
public void setGUILanguageStatus(String language, boolean active) throws ServerException
Description copied from interface:SystemService
Changes the activation status of a language- Specified by:
setGUILanguageStatus
in interfaceSystemService
- Parameters:
language
- the language to alteractive
- the new language's status- Throws:
ServerException
- an error happened in the server application
-
getPlugins
public GUIValue[] getPlugins() throws ServerException
Description copied from interface:SystemService
Retrieves all plug-ins- Specified by:
getPlugins
in interfaceSystemService
- Returns:
- the installed plug-ins names
- Throws:
ServerException
- an error happened in the server application
-
confirmUpdate
public void confirmUpdate() throws ServerException
Description copied from interface:SystemService
Confirms the last update- Specified by:
confirmUpdate
in interfaceSystemService
- Throws:
ServerException
- an error happened in the server application
-
restart
public void restart() throws ServerException
Description copied from interface:SystemService
Restarts the application- Specified by:
restart
in interfaceSystemService
- Throws:
ServerException
- an error happened in the server application
-
-