Class SoapSystemService
- java.lang.Object
-
- com.logicaldoc.webservice.AbstractService
-
- com.logicaldoc.webservice.soap.endpoint.SoapSystemService
-
- All Implemented Interfaces:
SystemService
- Direct Known Subclasses:
RestSystemService
public class SoapSystemService extends AbstractService implements SystemService
System Web Service Implementation- Since:
- 6.1
- Author:
- Matteo Caruso - LogicalDOC
-
-
Constructor Summary
Constructors Constructor Description SoapSystemService()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description WSSystemInfo
getInfo()
Retrieves the Installation informationsString[]
getLanguages(String tenantOrSid)
Retrieves the languages enabled in the server.WSParameter[]
getStatistics(String sid)
Retrieves the system statistics-
Methods inherited from class com.logicaldoc.webservice.AbstractService
convertDateToString, convertStringToDate, getContext, getMessageContext, isValidateSession, setContext, setMessageContext, setValidateSession
-
-
-
-
Method Detail
-
getStatistics
public WSParameter[] getStatistics(String sid) throws Exception
Description copied from interface:SystemService
Retrieves the system statistics- Specified by:
getStatistics
in interfaceSystemService
- Parameters:
sid
- Session identifier- Returns:
- The value object containing the statistics values
- Throws:
Exception
- error in the server application
-
getLanguages
public String[] getLanguages(String tenantOrSid) throws Exception
Description copied from interface:SystemService
Retrieves the languages enabled in the server.- Specified by:
getLanguages
in interfaceSystemService
- Parameters:
tenantOrSid
- Tenant name or session identifier (optional)- Returns:
- Array of active languages (en, it, es ....)
- Throws:
Exception
- error in the server application
-
getInfo
public WSSystemInfo getInfo() throws Exception
Description copied from interface:SystemService
Retrieves the Installation informations- Specified by:
getInfo
in interfaceSystemService
- Returns:
- The value object containing the installation informations
- Throws:
Exception
- error in the server application
-
-