Methods Summary |
---|
public java.lang.String | getAuthMechType()Get the auth-mech-type
if(authMechVal == PoolManagerConstants.BASIC_PASSWORD)
return ConnectorTagNames.DD_BASIC_PASSWORD;
else
return ConnectorTagNames.DD_KERBEROS;
|
public int | getAuthMechVal()Get the authentication mechanism value.
return authMechVal;
|
public java.lang.String | getCredentialInterface()Get the credential interface.
return credInterface;
|
public java.lang.String | getDescription()Get the description
return super.getDescription();
|
public void | setAuthMechVal(java.lang.String value)Set the authentication mechanism value.
if((value.trim()).equals(ConnectorTagNames.DD_BASIC_PASSWORD))
authMechVal = PoolManagerConstants.BASIC_PASSWORD;
else if((value.trim()).equals(ConnectorTagNames.DD_KERBEROS))
authMechVal = PoolManagerConstants.KERBV5;
else throw new IllegalArgumentException("Invalid auth-mech-type");// put this in localStrings...
|
public void | setAuthMechVal(int value)Set the authentication mechanism value.
authMechVal = value;
|
public void | setCredentialInterface(java.lang.String cred)Set the credential interface.
credInterface = cred;
|
public void | setDescription(java.lang.String description)Sets the description
super.setDescription(description);
|