Methods Summary |
---|
public java.lang.String | getAuthenticationMechansimType()Get the authentication mechanism type
return authenticationMechanismType;
|
public java.lang.String | getCredentialInterfaceClass()Get the credential interface class
return credentialInterfaceClass;
|
public void | setAuthenticationMechansimType(java.lang.String authenticationMechanismType)Set the authentication mechanism type
this.authenticationMechanismType = authenticationMechanismType;
|
public void | setCredentialInterfaceClass(java.lang.String credentialInterfaceClass)Set the credential interface class
this.credentialInterfaceClass = credentialInterfaceClass;
|
public java.lang.String | toString()
StringBuffer buffer = new StringBuffer();
buffer.append("AuthenticationMechanismMetaData").append('@");
buffer.append(Integer.toHexString(System.identityHashCode(this)));
buffer.append("[authenticationMechanismType=").append(authenticationMechanismType);
buffer.append(" credentialInterfaceClass=").append(credentialInterfaceClass);
buffer.append(" descriptions=").append(getDescriptions());
buffer.append(']");
return buffer.toString();
|