Class ExportConnectionInfo
- java.lang.Object
-
- com.identityworksllc.iiq.common.task.export.ExportConnectionInfo
-
- All Implemented Interfaces:
Serializable
public final class ExportConnectionInfo extends Object implements Serializable
A record / vo class used to pass connection info to the export partition.Your driver should already have been registered here.
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ExportConnectionInfo()
Construct an empty connection infoExportConnectionInfo(String url, String username, String encryptedPassword)
Construct a connection info with the given URL, username, and passwordExportConnectionInfo(String url, String username, String encryptedPassword, Properties options)
Construct a connection info with the given URL, username, and password
-
-
-
Constructor Detail
-
ExportConnectionInfo
public ExportConnectionInfo()
Construct an empty connection info
-
ExportConnectionInfo
public ExportConnectionInfo(String url, String username, String encryptedPassword)
Construct a connection info with the given URL, username, and password- Parameters:
url
- The URLusername
- The usernameencryptedPassword
- The encrypted password
-
ExportConnectionInfo
public ExportConnectionInfo(String url, String username, String encryptedPassword, Properties options)
Construct a connection info with the given URL, username, and password- Parameters:
url
- The URLusername
- The usernameencryptedPassword
- The encrypted passwordoptions
- The driver-specific connection options
-
-