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

org.jboss.shrinkwrap.descriptor.api.javaeewebservicesclient14.HandlerChainsType Maven / Gradle / Ivy

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

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

 
   // --------------------------------------------------------------------------------------------------------||
   // ClassName: HandlerChainsType ElementName: javaee:handler-chainType ElementType : handler-chain
   // MaxOccurs: -unbounded  isGeneric: true   isAttribute: false isEnum: false isDataType: false
   // --------------------------------------------------------------------------------------------------------||

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

   /**
    * Creates a new handler-chain element 
    * @return the new created instance of HandlerChainType> 
    */
   public HandlerChainType> createHandlerChain();

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

   /**
    * Removes all handler-chain elements 
    * @return the current instance of HandlerChainType> 
    */
   public HandlerChainsType removeAllHandlerChain();

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy