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

org.jboss.shrinkwrap.descriptor.api.beans10.Interceptors Maven / Gradle / Ivy

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

import java.util.ArrayList;
import java.util.List;
import org.jboss.shrinkwrap.descriptor.api.Child;
import org.jboss.shrinkwrap.descriptor.api.beans.*;
import org.jboss.shrinkwrap.descriptor.api.beans.JavaeeInterceptorsCommType;
/**
 * This interface defines the contract for the  interceptors  xsd type 
 * @author Ralf Battenfeld
 * @author Andrew Lee Rubinger
 * @author George Gastaldi
 */
public interface Interceptors extends Child, 
    JavaeeInterceptorsCommType> { 

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

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

   /**
    * Returns all class elements
    * @return list of class 
    */
   public List getAllClazz();

   /**
    * Removes the class element 
    * @return the current instance of Interceptors 
    */
   public Interceptors removeAllClazz();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy