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

org.jboss.shrinkwrap.descriptor.api.facesconfig22.FacesConfigMapEntryType Maven / Gradle / Ivy

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

import java.util.ArrayList;
import java.util.List;
import org.jboss.shrinkwrap.descriptor.api.Child;
import org.jboss.shrinkwrap.descriptor.api.facesconfig.*;
import org.jboss.shrinkwrap.descriptor.api.facesconfig.JavaeeFacesConfigMapEntryCommonType;
/**
 * This interface defines the contract for the  faces-config-map-entryType  xsd type 
 * @author Ralf Battenfeld
 * @author Andrew Lee Rubinger
 */
public interface FacesConfigMapEntryType extends Child, 
    JavaeeFacesConfigMapEntryCommonType> { 

 
   // --------------------------------------------------------------------------------------------------------||
   // ClassName: FacesConfigMapEntryType ElementName: xsd:token ElementType : key
   // MaxOccurs: -  isGeneric: true   isAttribute: false isEnum: false isDataType: true
   // --------------------------------------------------------------------------------------------------------||

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

   /**
    * Returns the key element
    * @return the node defined for the element key 
    */
   public String getKey();

   /**
    * Removes the key element 
    * @return the current instance of FacesConfigMapEntryType 
    */
   public FacesConfigMapEntryType removeKey();

 
   // --------------------------------------------------------------------------------------------------------||
   // ClassName: FacesConfigMapEntryType ElementName: javaee:faces-config-null-valueType ElementType : null-value
   // MaxOccurs: -  isGeneric: true   isAttribute: false isEnum: false isDataType: false
   // --------------------------------------------------------------------------------------------------------||

   /**
    * Sets the null-value element 
    * @return the current instance of FacesConfigMapEntryType 
    */
   public FacesConfigMapEntryType nullValue();

   /**
    * Removes the null-value element 
    * @return the current instance of FacesConfigMapEntryType 
    */
   public Boolean isNullValue();

   /**
    * Removes the null-value element 
    * @return the current instance of FacesConfigMapEntryType 
    */
   public FacesConfigMapEntryType removeNullValue();

 
   // --------------------------------------------------------------------------------------------------------||
   // ClassName: FacesConfigMapEntryType ElementName: javaee:faces-config-el-expressionType ElementType : value
   // MaxOccurs: -  isGeneric: true   isAttribute: false isEnum: false isDataType: true
   // --------------------------------------------------------------------------------------------------------||

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

   /**
    * Returns the value element
    * @return the node defined for the element value 
    */
   public String getValue();

   /**
    * Removes the value element 
    * @return the current instance of FacesConfigMapEntryType 
    */
   public FacesConfigMapEntryType removeValue();

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy