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

org.jboss.shrinkwrap.descriptor.api.facesconfig21.FacesConfigMapEntriesType Maven / Gradle / Ivy

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

import java.util.ArrayList;
import java.util.List;
import org.jboss.shrinkwrap.descriptor.api.Child;
import org.jboss.shrinkwrap.descriptor.api.facesconfig21.FacesConfigMapEntryType;
import org.jboss.shrinkwrap.descriptor.api.facesconfig.*;
import org.jboss.shrinkwrap.descriptor.api.facesconfig.JavaeeFacesConfigMapEntriesCommonType;

import org.jboss.shrinkwrap.descriptor.api.facesconfig21.FacesConfigMapEntryType;/**
 * This interface defines the contract for the  faces-config-map-entriesType  xsd type 
 * @author Ralf Battenfeld
 * @author Andrew Lee Rubinger
 * @author George Gastaldi
 */
public interface FacesConfigMapEntriesType extends Child, 
    JavaeeFacesConfigMapEntriesCommonType,
    FacesConfigMapEntryType>> { 

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

   /**
    * Sets the key-class element
    * @param keyClass the value for the element key-class 
    * @return the current instance of FacesConfigMapEntriesType 
    */
   public FacesConfigMapEntriesType keyClass(String keyClass);

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

   /**
    * Removes the key-class element 
    * @return the current instance of FacesConfigMapEntriesType 
    */
   public FacesConfigMapEntriesType removeKeyClass();

 
   // --------------------------------------------------------------------------------------------------------||
   // ClassName: FacesConfigMapEntriesType ElementName: javaee:fully-qualified-classType ElementType : value-class
   // MaxOccurs: -  isGeneric: true   isAttribute: false isEnum: false isDataType: true
   // --------------------------------------------------------------------------------------------------------||

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

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

   /**
    * Removes the value-class element 
    * @return the current instance of FacesConfigMapEntriesType 
    */
   public FacesConfigMapEntriesType removeValueClass();

 
   // --------------------------------------------------------------------------------------------------------||
   // ClassName: FacesConfigMapEntriesType ElementName: javaee:faces-config-map-entryType ElementType : map-entry
   // MaxOccurs: -unbounded  isGeneric: true   isAttribute: false isEnum: false isDataType: false
   // --------------------------------------------------------------------------------------------------------||

   /**
    * If not already created, a new map-entry element will be created and returned.
    * Otherwise, the first existing map-entry element will be returned.
    * @return the instance defined for the element map-entry 
    */
   public FacesConfigMapEntryType> getOrCreateMapEntry();

   /**
    * Creates a new map-entry element 
    * @return the new created instance of FacesConfigMapEntryType> 
    */
   public FacesConfigMapEntryType> createMapEntry();

   /**
    * Returns all map-entry elements
    * @return list of map-entry 
    */
   public List>> getAllMapEntry();

   /**
    * Removes all map-entry elements 
    * @return the current instance of FacesConfigMapEntryType> 
    */
   public FacesConfigMapEntriesType removeAllMapEntry();

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy