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

org.jboss.shrinkwrap.descriptor.api.connector10.AuthenticationMechanism Maven / Gradle / Ivy

package org.jboss.shrinkwrap.descriptor.api.connector10; 

import java.util.ArrayList;
import java.util.List;
import org.jboss.shrinkwrap.descriptor.api.Child;
/**
 * This interface defines the contract for the  authentication-mechanism  xsd type 
 * @author Ralf Battenfeld
 * @author Andrew Lee Rubinger
 * @author George Gastaldi
 */
public interface AuthenticationMechanism extends Child { 

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

   /**
    * Sets the description element
    * @param description the value for the element description 
    * @return the current instance of AuthenticationMechanism 
    */
   public AuthenticationMechanism description(String description);

   /**
    * Returns the description element
    * @return the node defined for the element description 
    */
   public String getDescription();

   /**
    * Removes the description element 
    * @return the current instance of AuthenticationMechanism 
    */
   public AuthenticationMechanism removeDescription();

 
   // --------------------------------------------------------------------------------------------------------||
   // ClassName: AuthenticationMechanism 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 AuthenticationMechanism 
    */
   public AuthenticationMechanism 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 AuthenticationMechanism 
    */
   public AuthenticationMechanism removeAuthenticationMechanismType();

 
   // --------------------------------------------------------------------------------------------------------||
   // ClassName: AuthenticationMechanism ElementName: xsd:string ElementType : credential-interface
   // MaxOccurs: -  isGeneric: true   isAttribute: false isEnum: false isDataType: true
   // --------------------------------------------------------------------------------------------------------||

   /**
    * Sets the credential-interface element
    * @param credentialInterface the value for the element credential-interface 
    * @return the current instance of AuthenticationMechanism 
    */
   public AuthenticationMechanism credentialInterface(String credentialInterface);

   /**
    * Returns the credential-interface element
    * @return the node defined for the element credential-interface 
    */
   public String getCredentialInterface();

   /**
    * Removes the credential-interface element 
    * @return the current instance of AuthenticationMechanism 
    */
   public AuthenticationMechanism removeCredentialInterface();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy