Class SoapClient<T>
- java.lang.Object
-
- com.logicaldoc.webservice.soap.client.SoapClient<T>
-
- Direct Known Subclasses:
SoapAuthClient
,SoapBookmarkClient
,SoapDocumentClient
,SoapDocumentMetadataClient
,SoapFolderClient
,SoapSearchClient
,SoapSecurityClient
,SoapSystemClient
,SoapTagClient
public abstract class SoapClient<T> extends Object
Parent for all SOAP clients- Since:
- 7.5
- Author:
- Marco Meschieri - LogicalDOC
-
-
Constructor Summary
Constructors Constructor Description SoapClient(String endpoint, Class<T> serviceClass, int gzipThreshold, boolean log, int timeout)
Constructor
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
setMaxChildElements(int maxChildElements)
-
-
-
Constructor Detail
-
SoapClient
public SoapClient(String endpoint, Class<T> serviceClass, int gzipThreshold, boolean log, int timeout)
Constructor- Parameters:
endpoint
- Connection URLserviceClass
- The class of the servicegzipThreshold
- threshold in KB, all packets greater than this one will be gzipped(use -1 to disable in any case)log
- True if you want the requests to be loggedtimeout
- Timeout for the SOAP requests (in seconds, default 60)
-
-