Package com.attivio.service
Class AbstractClientApiFactory<T>
- java.lang.Object
-
- com.attivio.service.AbstractClientApiFactory<T>
-
- All Implemented Interfaces:
ClientApiFactory<T>
,RemoteClientApiFactory<T>
- Direct Known Subclasses:
HttpTransportClientApiFactory
,JmxApiServiceFactory
public abstract class AbstractClientApiFactory<T> extends java.lang.Object implements RemoteClientApiFactory<T>
-
-
Constructor Summary
Constructors Constructor Description AbstractClientApiFactory()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
setAddress(java.lang.String address)
void
setDescription(java.lang.String description)
void
setFactoryParameters(java.util.Map<java.lang.String,java.lang.String> params)
Used to supply arbitrary parameters to the factory.void
setLocal(boolean local)
void
setPort(java.lang.Integer port)
void
setSslPort(java.lang.Integer port)
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface com.attivio.service.ClientApiFactory
getApi
-
-
-
-
Method Detail
-
setLocal
public void setLocal(boolean local)
- Specified by:
setLocal
in interfaceRemoteClientApiFactory<T>
-
setAddress
public void setAddress(java.lang.String address)
- Specified by:
setAddress
in interfaceRemoteClientApiFactory<T>
-
setPort
public void setPort(java.lang.Integer port)
- Specified by:
setPort
in interfaceRemoteClientApiFactory<T>
-
setFactoryParameters
public void setFactoryParameters(java.util.Map<java.lang.String,java.lang.String> params)
Description copied from interface:ClientApiFactory
Used to supply arbitrary parameters to the factory. The source of these parameters is theAieServiceInfo#getCustomFactoryParams()
- Specified by:
setFactoryParameters
in interfaceClientApiFactory<T>
-
setSslPort
public void setSslPort(java.lang.Integer port)
- Specified by:
setSslPort
in interfaceRemoteClientApiFactory<T>
-
setDescription
public void setDescription(java.lang.String description)
- Specified by:
setDescription
in interfaceClientApiFactory<T>
-
-