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

org.jboss.shrinkwrap.descriptor.api.javaeewebservicesclient13.HandlerChainType Maven / Gradle / Ivy

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

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

 
   // --------------------------------------------------------------------------------------------------------||
   // ClassName: HandlerChainType ElementName: xsd:token ElementType : service-name-pattern
   // MaxOccurs: -  isGeneric: true   isAttribute: false isEnum: false isDataType: true
   // --------------------------------------------------------------------------------------------------------||

   /**
    * Sets the service-name-pattern element
    * @param serviceNamePattern the value for the element service-name-pattern 
    * @return the current instance of HandlerChainType 
    */
   public HandlerChainType serviceNamePattern(String serviceNamePattern);

   /**
    * Returns the service-name-pattern element
    * @return the node defined for the element service-name-pattern 
    */
   public String getServiceNamePattern();

   /**
    * Removes the service-name-pattern element 
    * @return the current instance of HandlerChainType 
    */
   public HandlerChainType removeServiceNamePattern();

 
   // --------------------------------------------------------------------------------------------------------||
   // ClassName: HandlerChainType ElementName: xsd:token ElementType : port-name-pattern
   // MaxOccurs: -  isGeneric: true   isAttribute: false isEnum: false isDataType: true
   // --------------------------------------------------------------------------------------------------------||

   /**
    * Sets the port-name-pattern element
    * @param portNamePattern the value for the element port-name-pattern 
    * @return the current instance of HandlerChainType 
    */
   public HandlerChainType portNamePattern(String portNamePattern);

   /**
    * Returns the port-name-pattern element
    * @return the node defined for the element port-name-pattern 
    */
   public String getPortNamePattern();

   /**
    * Removes the port-name-pattern element 
    * @return the current instance of HandlerChainType 
    */
   public HandlerChainType removePortNamePattern();

 
   // --------------------------------------------------------------------------------------------------------||
   // ClassName: HandlerChainType ElementName: xsd:string ElementType : protocol-bindings
   // MaxOccurs: -  isGeneric: true   isAttribute: false isEnum: false isDataType: true
   // --------------------------------------------------------------------------------------------------------||

   /**
    * Sets the protocol-bindings element
    * @param protocolBindings the value for the element protocol-bindings 
    * @return the current instance of HandlerChainType 
    */
   public HandlerChainType protocolBindings(String protocolBindings);

   /**
    * Returns the protocol-bindings element
    * @return the node defined for the element protocol-bindings 
    */
   public String getProtocolBindings();

   /**
    * Removes the protocol-bindings element 
    * @return the current instance of HandlerChainType 
    */
   public HandlerChainType removeProtocolBindings();

 
   // --------------------------------------------------------------------------------------------------------||
   // ClassName: HandlerChainType ElementName: javaee:handlerType ElementType : handler
   // MaxOccurs: -unbounded  isGeneric: true   isAttribute: false isEnum: false isDataType: false
   // --------------------------------------------------------------------------------------------------------||

   /**
    * If not already created, a new handler element will be created and returned.
    * Otherwise, the first existing handler element will be returned.
    * @return the instance defined for the element handler 
    */
   public HandlerType> getOrCreateHandler();

   /**
    * Creates a new handler element 
    * @return the new created instance of HandlerType> 
    */
   public HandlerType> createHandler();

   /**
    * Returns all handler elements
    * @return list of handler 
    */
   public List>> getAllHandler();

   /**
    * Removes all handler elements 
    * @return the current instance of HandlerType> 
    */
   public HandlerChainType removeAllHandler();

 
   // --------------------------------------------------------------------------------------------------------||
   // ClassName: HandlerChainType 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 HandlerChainType 
    */
   public HandlerChainType 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 HandlerChainType 
    */
   public HandlerChainType removeId();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy