org.apache.openejb.jee
Class FacesFactory

java.lang.Object
  extended by org.apache.openejb.jee.FacesFactory

public class FacesFactory
extends java.lang.Object

The "factory" element provides a mechanism to define the various Factories that comprise parts of the implementation of JavaServer Faces. For nested elements that are not specified, the JSF implementation must provide a suitable default.

Java class for faces-config-factoryType complex type.

The following schema fragment specifies the expected content contained within this class.

 <complexType name="faces-config-factoryType">
   <complexContent>
     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
       <sequence>
         <element name="application-factory" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
         <element name="faces-context-factory" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
         <element name="lifecycle-factory" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
         <element name="render-kit-factory" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
         <element name="factory-extension" type="{http://java.sun.com/xml/ns/javaee}faces-config-factory-extensionType" maxOccurs="unbounded" minOccurs="0"/>
       </sequence>
       <attribute name="id" type="{http://www.w3.org/2001/XMLSchema}ID" />
     </restriction>
   </complexContent>
 </complexType>
 


Field Summary
protected  java.util.List<java.lang.String> applicationFactory
           
protected  java.util.List<java.lang.String> facesContextFactory
           
protected  java.util.List<FacesFactoryExtension> factoryExtension
           
protected  java.lang.String id
           
protected  java.util.List<java.lang.String> lifecycleFactory
           
protected  java.util.List<java.lang.String> renderKitFactory
           
 
Constructor Summary
FacesFactory()
           
 
Method Summary
 java.util.List<java.lang.String> getApplicationFactory()
          Gets the value of the applicationFactory property.
 java.util.List<java.lang.String> getFacesContextFactory()
          Gets the value of the facesContextFactory property.
 java.util.List<FacesFactoryExtension> getFactoryExtension()
          Gets the value of the factoryExtension property.
 java.lang.String getId()
          Gets the value of the id property.
 java.util.List<java.lang.String> getLifecycleFactory()
          Gets the value of the lifecycleFactory property.
 java.util.List<java.lang.String> getRenderKitFactory()
          Gets the value of the renderKitFactory property.
 void setId(java.lang.String value)
          Sets the value of the id property.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

applicationFactory

protected java.util.List<java.lang.String> applicationFactory

facesContextFactory

protected java.util.List<java.lang.String> facesContextFactory

lifecycleFactory

protected java.util.List<java.lang.String> lifecycleFactory

renderKitFactory

protected java.util.List<java.lang.String> renderKitFactory

factoryExtension

protected java.util.List<FacesFactoryExtension> factoryExtension

id

protected java.lang.String id
Constructor Detail

FacesFactory

public FacesFactory()
Method Detail

getApplicationFactory

public java.util.List<java.lang.String> getApplicationFactory()
Gets the value of the applicationFactory 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 a set method for the applicationFactory property.

For example, to add a new item, do as follows:

    getApplicationFactory().add(newItem);
 

Objects of the following type(s) are allowed in the list String


getFacesContextFactory

public java.util.List<java.lang.String> getFacesContextFactory()
Gets the value of the facesContextFactory 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 a set method for the facesContextFactory property.

For example, to add a new item, do as follows:

    getFacesContextFactory().add(newItem);
 

Objects of the following type(s) are allowed in the list String


getLifecycleFactory

public java.util.List<java.lang.String> getLifecycleFactory()
Gets the value of the lifecycleFactory 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 a set method for the lifecycleFactory property.

For example, to add a new item, do as follows:

    getLifecycleFactory().add(newItem);
 

Objects of the following type(s) are allowed in the list String


getRenderKitFactory

public java.util.List<java.lang.String> getRenderKitFactory()
Gets the value of the renderKitFactory 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 a set method for the renderKitFactory property.

For example, to add a new item, do as follows:

    getRenderKitFactory().add(newItem);
 

Objects of the following type(s) are allowed in the list String


getFactoryExtension

public java.util.List<FacesFactoryExtension> getFactoryExtension()
Gets the value of the factoryExtension 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 a set method for the factoryExtension property.

For example, to add a new item, do as follows:

    getFactoryExtension().add(newItem);
 

Objects of the following type(s) are allowed in the list FacesFactoryExtension


getId

public java.lang.String getId()
Gets the value of the id property.

Returns:
possible object is String

setId

public void setId(java.lang.String value)
Sets the value of the id property.

Parameters:
value - allowed object is String


Copyright © 1999-2011 The Apache OpenEJB development community. All Rights Reserved.