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

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

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

import java.util.ArrayList;
import java.util.List;
import org.jboss.shrinkwrap.descriptor.api.Child;
import org.jboss.shrinkwrap.descriptor.api.connector16.CredentialInterfaceType;
import org.jboss.shrinkwrap.descriptor.api.connector.*;
import org.jboss.shrinkwrap.descriptor.api.connector.JeeAuthenticationMechanismCommonType;
/**
 * This interface defines the contract for the  authentication-mechanismType  xsd type 
 * @author Ralf Battenfeld
 * @author Andrew Lee Rubinger
 * @author George Gastaldi
 */
public interface AuthenticationMechanismType extends Child, 
    JeeAuthenticationMechanismCommonType> { 

 
   // --------------------------------------------------------------------------------------------------------||
   // ClassName: AuthenticationMechanismType ElementName: xsd:string ElementType : description
   // MaxOccurs: -unbounded  isGeneric: true   isAttribute: false isEnum: false isDataType: true
   // --------------------------------------------------------------------------------------------------------||

   /**
    * Creates for all String objects representing description elements, 
    * a new description element 
    * @param values list of description objects 
    * @return the current instance of AuthenticationMechanismType 
    */
   public AuthenticationMechanismType description(String ... values);

   /**
    * Returns all description elements
    * @return list of description 
    */
   public List getAllDescription();

   /**
    * Removes the description element 
    * @return the current instance of AuthenticationMechanismType 
    */
   public AuthenticationMechanismType removeAllDescription();

 
   // --------------------------------------------------------------------------------------------------------||
   // ClassName: AuthenticationMechanismType ElementName: xsd:string ElementType : authentication-mechanism-type
   // MaxOccurs: -  isGeneric: true   isAttribute: false isEnum: false isDataType: true
   // --------------------------------------------------------------------------------------------------------||

   /**
    * Sets the authentication-mechanism-type element
    * @param authenticationMechanismType the value for the element authentication-mechanism-type 
    * @return the current instance of AuthenticationMechanismType 
    */
   public AuthenticationMechanismType authenticationMechanismType(String authenticationMechanismType);

   /**
    * Returns the authentication-mechanism-type element
    * @return the node defined for the element authentication-mechanism-type 
    */
   public String getAuthenticationMechanismType();

   /**
    * Removes the authentication-mechanism-type element 
    * @return the current instance of AuthenticationMechanismType 
    */
   public AuthenticationMechanismType removeAuthenticationMechanismType();

 
   // --------------------------------------------------------------------------------------------------------||
   // ClassName: AuthenticationMechanismType ElementName: javaee:credential-interfaceType ElementType : credential-interface
   // MaxOccurs: -  isGeneric: true   isAttribute: false isEnum: true isDataType: false
   // --------------------------------------------------------------------------------------------------------||
   /**
    * Sets the credential-interface element
    * @param credentialInterface the value for the element credential-interface 
    * @return the current instance of AuthenticationMechanismType 
    */
   public AuthenticationMechanismType credentialInterface(CredentialInterfaceType credentialInterface);
   /**
    * Sets the credential-interface element
    * @param credentialInterface the value for the element credential-interface 
    * @return the current instance of AuthenticationMechanismType 
    */
   public AuthenticationMechanismType credentialInterface(String credentialInterface);

   /**
    * Returns the credential-interface element
    * @return the value found for the element credential-interface 
    */
   public CredentialInterfaceType getCredentialInterface();

   /**
    * Returns the credential-interface element
    * @return the value found for the element credential-interface 
    */
   public String  getCredentialInterfaceAsString();

   /**
    * Removes the credential-interface attribute 
    * @return the current instance of AuthenticationMechanismType 
    */
   public AuthenticationMechanismType removeCredentialInterface();

 
   // --------------------------------------------------------------------------------------------------------||
   // ClassName: AuthenticationMechanismType ElementName: xsd:ID ElementType : id
   // MaxOccurs: -  isGeneric: true   isAttribute: true isEnum: false isDataType: true
   // --------------------------------------------------------------------------------------------------------||

   /**
    * Sets the id attribute
    * @param id the value for the attribute id 
    * @return the current instance of AuthenticationMechanismType 
    */
   public AuthenticationMechanismType id(String id);

   /**
    * Returns the id attribute
    * @return the value defined for the attribute id 
    */
   public String getId();

   /**
    * Removes the id attribute 
    * @return the current instance of AuthenticationMechanismType 
    */
   public AuthenticationMechanismType removeId();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy