Package org.apache.openejb.jee
Class FacesRedirect
- java.lang.Object
-
- org.apache.openejb.jee.FacesRedirect
-
public class FacesRedirect extends Object
web-facesconfig_2_0.xsdJava class for faces-config-redirectType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="faces-config-redirectType"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="view-param" type="{http://java.sun.com/xml/ns/javaee}faces-config-redirect-viewParamType" maxOccurs="unbounded" minOccurs="0"/> </sequence> <attribute name="id" type="{http://www.w3.org/2001/XMLSchema}ID" /> <attribute name="include-view-params" type="{http://www.w3.org/2001/XMLSchema}boolean" /> </restriction> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected Stringidprotected BooleanincludeViewParamsprotected List<FacesRedirectViewParam>viewParam
-
Constructor Summary
Constructors Constructor Description FacesRedirect()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetId()Gets the value of the id property.List<FacesRedirectViewParam>getViewParam()Gets the value of the viewParam property.BooleanisIncludeViewParams()Gets the value of the includeViewParams property.voidsetId(String value)Sets the value of the id property.voidsetIncludeViewParams(Boolean value)Sets the value of the includeViewParams property.
-
-
-
Field Detail
-
viewParam
protected List<FacesRedirectViewParam> viewParam
-
id
protected String id
-
includeViewParams
protected Boolean includeViewParams
-
-
Method Detail
-
getViewParam
public List<FacesRedirectViewParam> getViewParam()
Gets the value of the viewParam property. This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. This is why there is not asetmethod for the viewParam property. For example, to add a new item, do as follows:getViewParam().add(newItem);Objects of the following type(s) are allowed in the listFacesRedirectViewParam
-
setId
public void setId(String value)
Sets the value of the id property.- Parameters:
value- allowed object isString
-
isIncludeViewParams
public Boolean isIncludeViewParams()
Gets the value of the includeViewParams property.- Returns:
- possible object is
Boolean
-
-