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

org.jboss.shrinkwrap.descriptor.api.connector10.ConfigProperty Maven / Gradle / Ivy

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

import java.util.ArrayList;
import java.util.List;
import org.jboss.shrinkwrap.descriptor.api.Child;
/**
 * This interface defines the contract for the  config-property  xsd type 
 * @author Ralf Battenfeld
 * @author Andrew Lee Rubinger
 * @author George Gastaldi
 */
public interface ConfigProperty extends Child { 

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

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

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

   /**
    * Removes the config-property-value element 
    * @return the current instance of ConfigProperty 
    */
   public ConfigProperty removeConfigPropertyValue();

 
   // --------------------------------------------------------------------------------------------------------||
   // ClassName: ConfigProperty ElementName: xsd:string ElementType : description
   // MaxOccurs: -  isGeneric: true   isAttribute: false isEnum: false isDataType: true
   // --------------------------------------------------------------------------------------------------------||

   /**
    * Sets the description element
    * @param description the value for the element description 
    * @return the current instance of ConfigProperty 
    */
   public ConfigProperty description(String description);

   /**
    * Returns the description element
    * @return the node defined for the element description 
    */
   public String getDescription();

   /**
    * Removes the description element 
    * @return the current instance of ConfigProperty 
    */
   public ConfigProperty removeDescription();

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

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

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

   /**
    * Removes the config-property-name element 
    * @return the current instance of ConfigProperty 
    */
   public ConfigProperty removeConfigPropertyName();

 
   // --------------------------------------------------------------------------------------------------------||
   // ClassName: ConfigProperty ElementName: xsd:string ElementType : config-property-type
   // MaxOccurs: -  isGeneric: true   isAttribute: false isEnum: false isDataType: true
   // --------------------------------------------------------------------------------------------------------||

   /**
    * Sets the config-property-type element
    * @param configPropertyType the value for the element config-property-type 
    * @return the current instance of ConfigProperty 
    */
   public ConfigProperty configPropertyType(String configPropertyType);

   /**
    * Returns the config-property-type element
    * @return the node defined for the element config-property-type 
    */
   public String getConfigPropertyType();

   /**
    * Removes the config-property-type element 
    * @return the current instance of ConfigProperty 
    */
   public ConfigProperty removeConfigPropertyType();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy