Package com.logicaldoc.webservice.rest
Interface SystemService
-
- All Known Implementing Classes:
RestSystemService
,RestSystemSwagger
@Consumes("application/json") @Produces("application/json") public interface SystemService
System Web Service definition interface for REST. Alessandro Gasparini - LogicalDOC- Since:
- 8.4.2
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description WSSystemInfo
getInfo()
Retrieves the Installation informationsString[]
getLanguages()
Retrieves the languages enabled in the server.WSParameter[]
getStatistics()
Retrieves the system statistics
-
-
-
Method Detail
-
getInfo
@GET @Path("/getInfo") WSSystemInfo getInfo() throws Exception
Retrieves the Installation informations- Returns:
- The value object containing the installation informations
- Throws:
Exception
- error in the server application
-
getStatistics
@GET @Path("/getStatistics") WSParameter[] getStatistics() throws Exception
Retrieves the system statistics- Returns:
- The value object containing the statistics values
- Throws:
Exception
- error in the server application
-
-