All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jboss.shrinkwrap.descriptor.api.connector16.CredentialInterfaceType Maven / Gradle / Ivy

The newest version!
package org.jboss.shrinkwrap.descriptor.api.connector16; 

/**
 * This class implements the  credential-interfaceType  xsd type 
 * @author Ralf Battenfeld
 * @author Andrew Lee Rubinger
 * @author George Gastaldi
 */
public enum CredentialInterfaceType
{
   _JAVAX_RESOURCE_SPI_SECURITY_PASSWORDCREDENTIAL("javax.resource.spi.security.PasswordCredential"),
   _ORG_IETF_JGSS_GSSCREDENTIAL("org.ietf.jgss.GSSCredential"),
   _JAVAX_RESOURCE_SPI_SECURITY_GENERICCREDENTIAL("javax.resource.spi.security.GenericCredential");

   private String value;

   CredentialInterfaceType (String value) { this.value = value; }

   public String toString() {return value;}

   public static CredentialInterfaceType getFromStringValue(String value)
   {
      for(CredentialInterfaceType type: CredentialInterfaceType.values())
      {
         if(value != null && type.toString().equals(value))
        { return type;}
      }
      return null;
   }

}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy