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

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

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.JavaeeActivationConfigPropertyCommonType;
/**
 * This interface defines the contract for the  activation-config-propertyType  xsd type 
 * @author Ralf Battenfeld
 * @author Andrew Lee Rubinger
 * @author George Gastaldi
 */
public interface ActivationConfigPropertyType extends Child, 
    JavaeeActivationConfigPropertyCommonType> { 

 
   // --------------------------------------------------------------------------------------------------------||
   // ClassName: ActivationConfigPropertyType ElementName: xsd:string ElementType : activation-config-property-name
   // MaxOccurs: -  isGeneric: true   isAttribute: false isEnum: false isDataType: true
   // --------------------------------------------------------------------------------------------------------||

   /**
    * Sets the activation-config-property-name element
    * @param activationConfigPropertyName the value for the element activation-config-property-name 
    * @return the current instance of ActivationConfigPropertyType 
    */
   public ActivationConfigPropertyType activationConfigPropertyName(String activationConfigPropertyName);

   /**
    * Returns the activation-config-property-name element
    * @return the node defined for the element activation-config-property-name 
    */
   public String getActivationConfigPropertyName();

   /**
    * Removes the activation-config-property-name element 
    * @return the current instance of ActivationConfigPropertyType 
    */
   public ActivationConfigPropertyType removeActivationConfigPropertyName();

 
   // --------------------------------------------------------------------------------------------------------||
   // ClassName: ActivationConfigPropertyType ElementName: xsd:string ElementType : activation-config-property-value
   // MaxOccurs: -  isGeneric: true   isAttribute: false isEnum: false isDataType: true
   // --------------------------------------------------------------------------------------------------------||

   /**
    * Sets the activation-config-property-value element
    * @param activationConfigPropertyValue the value for the element activation-config-property-value 
    * @return the current instance of ActivationConfigPropertyType 
    */
   public ActivationConfigPropertyType activationConfigPropertyValue(String activationConfigPropertyValue);

   /**
    * Returns the activation-config-property-value element
    * @return the node defined for the element activation-config-property-value 
    */
   public String getActivationConfigPropertyValue();

   /**
    * Removes the activation-config-property-value element 
    * @return the current instance of ActivationConfigPropertyType 
    */
   public ActivationConfigPropertyType removeActivationConfigPropertyValue();

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy