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

org.jboss.shrinkwrap.descriptor.api.ejbjar30.AroundInvokeType Maven / Gradle / Ivy

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

import java.util.ArrayList;
import java.util.List;
import org.jboss.shrinkwrap.descriptor.api.Child;
import org.jboss.shrinkwrap.descriptor.api.ejbjar.*;
import org.jboss.shrinkwrap.descriptor.api.ejbjar.JavaeeAroundInvokeCommonType;
/**
 * This interface defines the contract for the  around-invokeType  xsd type 
 * @author Ralf Battenfeld
 * @author Andrew Lee Rubinger
 * @author George Gastaldi
 */
public interface AroundInvokeType extends Child, 
    JavaeeAroundInvokeCommonType> { 

 
   // --------------------------------------------------------------------------------------------------------||
   // ClassName: AroundInvokeType ElementName: xsd:token ElementType : class
   // MaxOccurs: -  isGeneric: true   isAttribute: false isEnum: false isDataType: true
   // --------------------------------------------------------------------------------------------------------||

   /**
    * Sets the class element
    * @param clazz the value for the element class 
    * @return the current instance of AroundInvokeType 
    */
   public AroundInvokeType clazz(String clazz);

   /**
    * Returns the class element
    * @return the node defined for the element class 
    */
   public String getClazz();

   /**
    * Removes the class element 
    * @return the current instance of AroundInvokeType 
    */
   public AroundInvokeType removeClazz();

 
   // --------------------------------------------------------------------------------------------------------||
   // ClassName: AroundInvokeType ElementName: xsd:token ElementType : method-name
   // MaxOccurs: -  isGeneric: true   isAttribute: false isEnum: false isDataType: true
   // --------------------------------------------------------------------------------------------------------||

   /**
    * Sets the method-name element
    * @param methodName the value for the element method-name 
    * @return the current instance of AroundInvokeType 
    */
   public AroundInvokeType methodName(String methodName);

   /**
    * Returns the method-name element
    * @return the node defined for the element method-name 
    */
   public String getMethodName();

   /**
    * Removes the method-name element 
    * @return the current instance of AroundInvokeType 
    */
   public AroundInvokeType removeMethodName();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy