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

org.jboss.shrinkwrap.descriptor.api.javaee7.LifecycleCallbackType Maven / Gradle / Ivy

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

import java.util.ArrayList;
import java.util.List;
import org.jboss.shrinkwrap.descriptor.api.Child;
import org.jboss.shrinkwrap.descriptor.api.javaee.*;
/**
 * This interface defines the contract for the  lifecycle-callbackType  xsd type 
 * @author Ralf Battenfeld
 * @author Andrew Lee Rubinger
 */
public interface LifecycleCallbackType extends Child, 
    JavaeeLifecycleCallbackCommonType> { 

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

   /**
    * Sets the lifecycle-callback-class element
    * @param lifecycleCallbackClass the value for the element lifecycle-callback-class 
    * @return the current instance of LifecycleCallbackType 
    */
   public LifecycleCallbackType lifecycleCallbackClass(String lifecycleCallbackClass);

   /**
    * Returns the lifecycle-callback-class element
    * @return the node defined for the element lifecycle-callback-class 
    */
   public String getLifecycleCallbackClass();

   /**
    * Removes the lifecycle-callback-class element 
    * @return the current instance of LifecycleCallbackType 
    */
   public LifecycleCallbackType removeLifecycleCallbackClass();

 
   // --------------------------------------------------------------------------------------------------------||
   // ClassName: LifecycleCallbackType ElementName: xsd:token ElementType : lifecycle-callback-method
   // MaxOccurs: -  isGeneric: true   isAttribute: false isEnum: false isDataType: true
   // --------------------------------------------------------------------------------------------------------||

   /**
    * Sets the lifecycle-callback-method element
    * @param lifecycleCallbackMethod the value for the element lifecycle-callback-method 
    * @return the current instance of LifecycleCallbackType 
    */
   public LifecycleCallbackType lifecycleCallbackMethod(String lifecycleCallbackMethod);

   /**
    * Returns the lifecycle-callback-method element
    * @return the node defined for the element lifecycle-callback-method 
    */
   public String getLifecycleCallbackMethod();

   /**
    * Removes the lifecycle-callback-method element 
    * @return the current instance of LifecycleCallbackType 
    */
   public LifecycleCallbackType removeLifecycleCallbackMethod();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy