Interface ConnInstance
-
- All Superinterfaces:
Entity
,Serializable
- All Known Implementing Classes:
JPAConnInstance
public interface ConnInstance extends Entity
-
-
Field Summary
-
Fields inherited from interface org.apache.syncope.core.persistence.api.entity.Entity
EMAIL_PATTERN, ID_PATTERN, ID_REGEX
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
add(ExternalResource resource)
Realm
getAdminRealm()
String
getBundleName()
Set<ConnectorCapability>
getCapabilities()
Set<ConnConfProperty>
getConf()
String
getConnectorName()
Integer
getConnRequestTimeout()
String
getDisplayName()
String
getLocation()
ConnPoolConf
getPoolConf()
List<? extends ExternalResource>
getResources()
String
getVersion()
void
setAdminRealm(Realm adminRealm)
void
setBundleName(String bundleName)
void
setConf(Collection<ConnConfProperty> conf)
void
setConnectorName(String connectorName)
void
setConnRequestTimeout(Integer timeout)
void
setDisplayName(String displayName)
void
setLocation(String location)
void
setPoolConf(ConnPoolConf poolConf)
void
setVersion(String version)
-
-
-
Method Detail
-
getAdminRealm
Realm getAdminRealm()
-
setAdminRealm
void setAdminRealm(Realm adminRealm)
-
setConnectorName
void setConnectorName(String connectorName)
-
getConnectorName
String getConnectorName()
-
setDisplayName
void setDisplayName(String displayName)
-
getDisplayName
String getDisplayName()
-
setLocation
void setLocation(String location)
-
getLocation
String getLocation()
-
setPoolConf
void setPoolConf(ConnPoolConf poolConf)
-
getPoolConf
ConnPoolConf getPoolConf()
-
setVersion
void setVersion(String version)
-
getVersion
String getVersion()
-
setBundleName
void setBundleName(String bundleName)
-
getBundleName
String getBundleName()
-
getCapabilities
Set<ConnectorCapability> getCapabilities()
-
add
boolean add(ExternalResource resource)
-
getResources
List<? extends ExternalResource> getResources()
-
setConf
void setConf(Collection<ConnConfProperty> conf)
-
getConf
Set<ConnConfProperty> getConf()
-
setConnRequestTimeout
void setConnRequestTimeout(Integer timeout)
-
getConnRequestTimeout
Integer getConnRequestTimeout()
-
-