Package org.apache.openejb.jee
Class FacesMapEntry
- java.lang.Object
-
- org.apache.openejb.jee.FacesMapEntry
-
public class FacesMapEntry extends Object
web-facesconfig_2_0.xsdJava class for faces-config-map-entryType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="faces-config-map-entryType"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="key" type="{http://www.w3.org/2001/XMLSchema}string"/> <choice> <element name="null-value" type="{http://java.sun.com/xml/ns/javaee}faces-config-null-valueType"/> <element name="value" type="{http://www.w3.org/2001/XMLSchema}string"/> </choice> </sequence> <attribute name="id" type="{http://www.w3.org/2001/XMLSchema}ID" /> </restriction> </complexContent> </complexType>
-
-
Constructor Summary
Constructors Constructor Description FacesMapEntry()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetId()Gets the value of the id property.StringgetKey()Gets the value of the key property.FacesNullValuegetNullValue()Gets the value of the nullValue property.StringgetValue()Gets the value of the value property.voidsetId(String value)Sets the value of the id property.voidsetKey(String value)Sets the value of the key property.voidsetNullValue(FacesNullValue value)Sets the value of the nullValue property.voidsetValue(String value)Sets the value of the value property.
-
-
-
Field Detail
-
key
protected String key
-
nullValue
protected FacesNullValue nullValue
-
value
protected String value
-
id
protected String id
-
-
Method Detail
-
getKey
public String getKey()
Gets the value of the key property.- Returns:
- possible object is
String
-
setKey
public void setKey(String value)
Sets the value of the key property.- Parameters:
value- allowed object isString
-
getNullValue
public FacesNullValue getNullValue()
Gets the value of the nullValue property.- Returns:
- possible object is
FacesNullValue
-
setNullValue
public void setNullValue(FacesNullValue value)
Sets the value of the nullValue property.- Parameters:
value- allowed object isFacesNullValue
-
getValue
public String getValue()
Gets the value of the value property.- Returns:
- possible object is
String
-
setValue
public void setValue(String value)
Sets the value of the value property.- Parameters:
value- allowed object isString
-
-