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
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object o)
String
getDriver()
String
getEncryptedPassword()
Properties
getOptions()
String
getUrl()
String
getUsername()
int
hashCode()
void
setDriver(String driver)
void
setEncryptedPassword(String encryptedPassword)
void
setOptions(Properties options)
void
setUrl(String url)
void
setUsername(String username)
-
-
-
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
-
-
Method Detail
-
getEncryptedPassword
public String getEncryptedPassword()
-
getOptions
public Properties getOptions()
-
getUsername
public String getUsername()
-
setEncryptedPassword
public void setEncryptedPassword(String encryptedPassword)
-
setOptions
public void setOptions(Properties options)
-
setUsername
public void setUsername(String username)
-
-