Interface JDBCSyncDestinationConfig
-
- All Superinterfaces:
GenericConfig
,GenericSyncConfig
@NotExtensible @ThreadSafety(level=INTERFACE_NOT_THREADSAFE) public interface JDBCSyncDestinationConfig extends GenericSyncConfig
This interface defines a set of methods that may be used to obtain information about the general configuration for a JDBC Sync Destination.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getDescription()
Gets the description for this Sync Destination.int
getMaxOpenConnections()
Gets the maximum number of connections that the Sync Destination is allowed to have open to the database at a given time.-
Methods inherited from interface com.unboundid.directory.sdk.common.config.GenericConfig
getConfigObjectDN, getConfigObjectName
-
Methods inherited from interface com.unboundid.directory.sdk.sync.config.GenericSyncConfig
getServerContext
-
-
-
-
Method Detail
-
getDescription
java.lang.String getDescription()
Gets the description for this Sync Destination.- Returns:
- the description, or null if there is none set.
-
getMaxOpenConnections
int getMaxOpenConnections()
Gets the maximum number of connections that the Sync Destination is allowed to have open to the database at a given time.- Returns:
- an integer between 1 and 1000
-
-