Class SoapReportService
java.lang.Object
com.logicaldoc.webservice.AbstractService
com.logicaldoc.report.webservice.soap.endpoint.SoapReportService
- All Implemented Interfaces:
ReportService
public class SoapReportService
extends com.logicaldoc.webservice.AbstractService
implements ReportService
Report Web Service Implementation
- Since:
- 7.4
- Author:
- Marco Meschieri - LogicalDOC
-
Constructor Summary
-
Method Summary
Methods inherited from class com.logicaldoc.webservice.AbstractService
convertDateToString, convertStringToDate, getCurrentMessage, isValidateSession, setCurrentMessage, setValidateSession
-
Constructor Details
-
SoapReportService
public SoapReportService()
-
-
Method Details
-
list
public List<WSReport> list(String sid) throws FeatureNotEnabledException, com.logicaldoc.core.security.authentication.AuthenticationException, com.logicaldoc.webservice.WebserviceException, com.logicaldoc.core.PersistenceException, com.logicaldoc.core.security.authorization.PermissionException Description copied from interface:ReportService
Lists all the reports in the tenant- Specified by:
list
in interfaceReportService
- Parameters:
sid
- The session identifier- Returns:
- The array of all the reports
- Throws:
FeatureNotEnabledException
- The feature is not enabled in the licensecom.logicaldoc.core.security.authentication.AuthenticationException
- The user has not been authenticatedcom.logicaldoc.webservice.WebserviceException
- Error in the webservicecom.logicaldoc.core.PersistenceException
- Error in the data layercom.logicaldoc.core.security.authorization.PermissionException
- The user does not have enough permissions
-
execute
public void execute(String sid, long reportId, List<com.logicaldoc.webservice.model.WSAttribute> parameters) throws FeatureNotEnabledException, com.logicaldoc.core.security.authorization.PermissionException, com.logicaldoc.webservice.WebserviceException, com.logicaldoc.core.security.authentication.AuthenticationException, com.logicaldoc.core.PersistenceException Description copied from interface:ReportService
Executes a given report- Specified by:
execute
in interfaceReportService
- Parameters:
sid
- The session identifierreportId
- The ID of the report to executeparameters
- The parameters to pass to the report (optional)- Throws:
FeatureNotEnabledException
- The feature is not enabled in the licensecom.logicaldoc.core.security.authorization.PermissionException
- The user does not have enough permissionscom.logicaldoc.webservice.WebserviceException
- Error in the webservicecom.logicaldoc.core.security.authentication.AuthenticationException
- The user has not been authenticatedcom.logicaldoc.core.PersistenceException
- Error in the data layer
-