Class LoginConfig
- java.lang.Object
-
- org.eclipse.persistence.internal.sessions.factories.model.login.LoginConfig
-
- Direct Known Subclasses:
DatabaseLoginConfig,EISLoginConfig,XMLLoginConfig
public abstract class LoginConfig extends java.lang.ObjectINTERNAL:
-
-
Constructor Summary
Constructors Constructor Description LoginConfig()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetEncryptedPassword()Assume the password has been encrypted and return it.java.lang.StringgetEncryptionClass()booleangetExternalConnectionPooling()booleangetExternalTransactionController()java.lang.StringgetPassword()This method will return the decrypted password.java.lang.StringgetPlatformClass()java.util.VectorgetPropertyConfigs()SequencingConfiggetSequencingConfig()java.lang.StringgetTableQualifier()java.lang.StringgetUsername()voidsetEncryptedPassword(java.lang.String encryptedPassword)This method should never be called from the Mapping Workbench.voidsetEncryptionClass(java.lang.String encryptionClass)voidsetExternalConnectionPooling(boolean externalConnectionPooling)voidsetExternalTransactionController(boolean externalTransactionController)voidsetPassword(java.lang.String password)This method will always encrypt the password regardless.voidsetPlatformClass(java.lang.String platformClass)voidsetPropertyConfigs(java.util.Vector propertyConfigs)voidsetSequencingConfig(SequencingConfig sequencingConfig)voidsetTableQualifier(java.lang.String tableQualifier)voidsetUsername(java.lang.String username)
-
-
-
Method Detail
-
setPlatformClass
public void setPlatformClass(java.lang.String platformClass)
-
getPlatformClass
public java.lang.String getPlatformClass()
-
setUsername
public void setUsername(java.lang.String username)
-
getUsername
public java.lang.String getUsername()
-
setEncryptionClass
public void setEncryptionClass(java.lang.String encryptionClass)
-
getEncryptionClass
public java.lang.String getEncryptionClass()
-
setPassword
public void setPassword(java.lang.String password)
This method will always encrypt the password regardless. Should only ever be called from the Mapping Workbench. It can be called before setting an encryption class, therefore, the securable object initialization remains in the constructor with default to JCE and changes only if an encryption class is set.- Parameters:
password-
-
setEncryptedPassword
public void setEncryptedPassword(java.lang.String encryptedPassword)
This method should never be called from the Mapping Workbench. Instead it is called only at load time of a schema formatted sessions.xml file. It assumes the password is encrypted. If it is not we will make sure it is encrypted.- Parameters:
encryptedPassword-
-
getPassword
public java.lang.String getPassword()
This method will return the decrypted password. This method should only be called by the Mapping Workbench.- Returns:
- decryptedPassword
-
getEncryptedPassword
public java.lang.String getEncryptedPassword()
Assume the password has been encrypted and return it.- Returns:
- encryptedPassword
-
setTableQualifier
public void setTableQualifier(java.lang.String tableQualifier)
-
getTableQualifier
public java.lang.String getTableQualifier()
-
setExternalConnectionPooling
public void setExternalConnectionPooling(boolean externalConnectionPooling)
-
getExternalConnectionPooling
public boolean getExternalConnectionPooling()
-
setExternalTransactionController
public void setExternalTransactionController(boolean externalTransactionController)
-
getExternalTransactionController
public boolean getExternalTransactionController()
-
setSequencingConfig
public void setSequencingConfig(SequencingConfig sequencingConfig)
-
getSequencingConfig
public SequencingConfig getSequencingConfig()
-
setPropertyConfigs
public void setPropertyConfigs(java.util.Vector propertyConfigs)
-
getPropertyConfigs
public java.util.Vector getPropertyConfigs()
-
-