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

org.jboss.shrinkwrap.descriptor.api.ejbjar31.ApplicationExceptionType Maven / Gradle / Ivy

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

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.JavaeeApplicationExceptionCommonType;
/**
 * This interface defines the contract for the  application-exceptionType  xsd type 
 * @author Ralf Battenfeld
 * @author Andrew Lee Rubinger
 * @author George Gastaldi
 */
public interface ApplicationExceptionType extends Child, 
    JavaeeApplicationExceptionCommonType> { 

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

   /**
    * Sets the exception-class element
    * @param exceptionClass the value for the element exception-class 
    * @return the current instance of ApplicationExceptionType 
    */
   public ApplicationExceptionType exceptionClass(String exceptionClass);

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

   /**
    * Removes the exception-class element 
    * @return the current instance of ApplicationExceptionType 
    */
   public ApplicationExceptionType removeExceptionClass();

 
   // --------------------------------------------------------------------------------------------------------||
   // ClassName: ApplicationExceptionType ElementName: javaee:xsdBooleanType ElementType : rollback
   // MaxOccurs: -  isGeneric: true   isAttribute: false isEnum: false isDataType: true
   // --------------------------------------------------------------------------------------------------------||

   /**
    * Sets the rollback element
    * @param rollback the value for the element rollback 
    * @return the current instance of ApplicationExceptionType 
    */
   public ApplicationExceptionType rollback(Boolean rollback);

   /**
    * Returns the rollback element
    * @return the node defined for the element rollback 
    */
   public Boolean isRollback();

   /**
    * Removes the rollback element 
    * @return the current instance of ApplicationExceptionType 
    */
   public ApplicationExceptionType removeRollback();

 
   // --------------------------------------------------------------------------------------------------------||
   // ClassName: ApplicationExceptionType ElementName: javaee:xsdBooleanType ElementType : inherited
   // MaxOccurs: -  isGeneric: true   isAttribute: false isEnum: false isDataType: true
   // --------------------------------------------------------------------------------------------------------||

   /**
    * Sets the inherited element
    * @param inherited the value for the element inherited 
    * @return the current instance of ApplicationExceptionType 
    */
   public ApplicationExceptionType inherited(Boolean inherited);

   /**
    * Returns the inherited element
    * @return the node defined for the element inherited 
    */
   public Boolean isInherited();

   /**
    * Removes the inherited element 
    * @return the current instance of ApplicationExceptionType 
    */
   public ApplicationExceptionType removeInherited();

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy