FileDocCategorySizeDatePackage
AuthenticationMechanismMetaData.javaAPI DocJBoss 4.2.13025Fri Jul 13 21:01:18 BST 2007org.jboss.resource.metadata

AuthenticationMechanismMetaData

public class AuthenticationMechanismMetaData extends DescriptionMetaDataContainer
Authentication mechanism meta data
author
Adrian Brock
version
$Revision: 57189 $

Fields Summary
static final long
serialVersionUID
private String
authenticationMechanismType
The authentication mechanism type
private String
credentialInterfaceClass
The credential interface class
Constructors Summary
Methods Summary
public java.lang.StringgetAuthenticationMechansimType()
Get the authentication mechanism type

return
the authentication mechanism type


                  
     
   
      return authenticationMechanismType;
   
public java.lang.StringgetCredentialInterfaceClass()
Get the credential interface class

return
the credential interface class

      return credentialInterfaceClass;
   
public voidsetAuthenticationMechansimType(java.lang.String authenticationMechanismType)
Set the authentication mechanism type

param
authenticationMechanismType the type

      this.authenticationMechanismType = authenticationMechanismType;
   
public voidsetCredentialInterfaceClass(java.lang.String credentialInterfaceClass)
Set the credential interface class

param
credentialInterfaceClass the class

      this.credentialInterfaceClass = credentialInterfaceClass;
   
public java.lang.StringtoString()

      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();