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

org.jboss.shrinkwrap.descriptor.api.facespartialresponse22.PartialResponseInsertType Maven / Gradle / Ivy

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

import java.util.ArrayList;
import java.util.List;
import org.jboss.shrinkwrap.descriptor.api.Child;
import org.jboss.shrinkwrap.descriptor.api.facespartialresponse22.Before;
import org.jboss.shrinkwrap.descriptor.api.facespartialresponse22.After;
import org.jboss.shrinkwrap.descriptor.api.facespartialresponse.*;
import org.jboss.shrinkwrap.descriptor.api.facespartialresponse.JavaeePartialResponseInsertCommonType;

import org.jboss.shrinkwrap.descriptor.api.facespartialresponse22.Before;
import org.jboss.shrinkwrap.descriptor.api.facespartialresponse22.After;/**
 * This interface defines the contract for the  partial-response-insertType  xsd type 
 * @author Ralf Battenfeld
 * @author Andrew Lee Rubinger
 */
public interface PartialResponseInsertType extends Child, 
    JavaeePartialResponseInsertCommonType,
    Before>,
    After>> { 

 
   // --------------------------------------------------------------------------------------------------------||
   // ClassName: PartialResponseInsertType ElementName: javaee:before ElementType : before
   // MaxOccurs: -  isGeneric: true   isAttribute: false isEnum: false isDataType: false
   // --------------------------------------------------------------------------------------------------------||

   /**
    * If not already created, a new before element with the given value will be created.
    * Otherwise, the existing before element will be returned.
    * @return  a new or existing instance of Before> 
    */
   public Before> getOrCreateBefore();

   /**
    * Removes the before element 
    * @return the current instance of PartialResponseInsertType 
    */
   public PartialResponseInsertType removeBefore();

 
   // --------------------------------------------------------------------------------------------------------||
   // ClassName: PartialResponseInsertType ElementName: javaee:after ElementType : after
   // MaxOccurs: -  isGeneric: true   isAttribute: false isEnum: false isDataType: false
   // --------------------------------------------------------------------------------------------------------||

   /**
    * If not already created, a new after element with the given value will be created.
    * Otherwise, the existing after element will be returned.
    * @return  a new or existing instance of After> 
    */
   public After> getOrCreateAfter();

   /**
    * Removes the after element 
    * @return the current instance of PartialResponseInsertType 
    */
   public PartialResponseInsertType removeAfter();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy