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

org.apache.openejb.jee.FacesConfigFlowDefinition Maven / Gradle / Ivy

The newest version!
/**
 * Licensed to the Apache Software Foundation (ASF) under one or more
 * contributor license agreements.  See the NOTICE file distributed with
 * this work for additional information regarding copyright ownership.
 * The ASF licenses this file to You under the Apache License, Version 2.0
 * (the "License"); you may not use this file except in compliance with
 * the License.  You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 *  Unless required by applicable law or agreed to in writing, software
 *  distributed under the License is distributed on an "AS IS" BASIS,
 *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 *  See the License for the specific language governing permissions and
 *  limitations under the License.
 */
package org.apache.openejb.jee;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlID;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import javax.xml.bind.annotation.adapters.CollapsedStringAdapter;
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import java.util.ArrayList;
import java.util.List;


/**
 * 

Top level element for a flow * definition.

*

*

*

*

If there is no <start-node> element declared, it * is assumed to be <flowName>.xhtml.

*

*

*

*

*

*

*

Java class for faces-config-flow-definitionType complex type. *

*

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

*

 * <complexType name="faces-config-flow-definitionType">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <group ref="{http://xmlns.jcp.org/xml/ns/javaee}descriptionGroup"/>
 *         <element name="start-node" type="{http://xmlns.jcp.org/xml/ns/javaee}java-identifierType" minOccurs="0"/>
 *         <element name="view" type="{http://xmlns.jcp.org/xml/ns/javaee}faces-config-flow-definition-viewType" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="switch" type="{http://xmlns.jcp.org/xml/ns/javaee}faces-config-flow-definition-switchType" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="flow-return" type="{http://xmlns.jcp.org/xml/ns/javaee}faces-config-flow-definition-flow-returnType" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="navigation-rule" type="{http://xmlns.jcp.org/xml/ns/javaee}faces-config-navigation-ruleType" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="flow-call" type="{http://xmlns.jcp.org/xml/ns/javaee}faces-config-flow-definition-flow-callType" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="method-call" type="{http://xmlns.jcp.org/xml/ns/javaee}faces-config-flow-definition-faces-method-callType" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="initializer" type="{http://xmlns.jcp.org/xml/ns/javaee}faces-config-flow-definition-initializerType" minOccurs="0"/>
 *         <element name="finalizer" type="{http://xmlns.jcp.org/xml/ns/javaee}faces-config-flow-definition-finalizerType" minOccurs="0"/>
 *         <element name="inbound-parameter" type="{http://xmlns.jcp.org/xml/ns/javaee}faces-config-flow-definition-inbound-parameterType" maxOccurs="unbounded" minOccurs="0"/>
 *       </sequence>
 *       <attribute name="id" use="required" type="{http://www.w3.org/2001/XMLSchema}ID" />
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
*/ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "faces-config-flow-definitionType", propOrder = { "description", "displayName", "icon", "startNode", "view", "_switch", "flowReturn", "navigationRule", "flowCall", "methodCall", "initializer", "finalizer", "inboundParameter" }) public class FacesConfigFlowDefinition { protected List description; @XmlElement(name = "display-name") protected List displayName; protected List icon; @XmlElement(name = "start-node") protected JavaIdentifier startNode; protected List view; @XmlElement(name = "switch") protected List _switch; @XmlElement(name = "flow-return") protected List flowReturn; @XmlElement(name = "navigation-rule") protected List navigationRule; @XmlElement(name = "flow-call") protected List flowCall; @XmlElement(name = "method-call") protected List methodCall; protected FacesConfigFlowDefinitionInitializer initializer; protected FacesConfigFlowDefinitionFinalizer finalizer; @XmlElement(name = "inbound-parameter") protected List inboundParameter; @XmlAttribute(name = "id", required = true) @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlID @XmlSchemaType(name = "ID") protected java.lang.String id; /** * Gets the value of the description 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 description property. *

*

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

     *    getDescription().add(newItem);
     * 
*

*

*

* Objects of the following type(s) are allowed in the list * {@link Description } */ public List getDescription() { if (description == null) { description = new ArrayList(); } return this.description; } /** * Gets the value of the displayName 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 displayName property. *

*

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

     *    getDisplayName().add(newItem);
     * 
*

*

*

* Objects of the following type(s) are allowed in the list * {@link DisplayName } */ public List getDisplayName() { if (displayName == null) { displayName = new ArrayList(); } return this.displayName; } /** * Gets the value of the icon 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 icon property. *

*

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

     *    getIcon().add(newItem);
     * 
*

*

*

* Objects of the following type(s) are allowed in the list * {@link Icon } */ public List getIcon() { if (icon == null) { icon = new ArrayList(); } return this.icon; } /** * Gets the value of the startNode property. * * @return possible object is * {@link JavaIdentifier } */ public JavaIdentifier getStartNode() { return startNode; } /** * Sets the value of the startNode property. * * @param value allowed object is * {@link JavaIdentifier } */ public void setStartNode(final JavaIdentifier value) { this.startNode = value; } /** * Gets the value of the view 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 view property. *

*

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

     *    getView().add(newItem);
     * 
*

*

*

* Objects of the following type(s) are allowed in the list * {@link FacesConfigFlowDefinitionView } */ public List getView() { if (view == null) { view = new ArrayList(); } return this.view; } /** * Gets the value of the switch 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 switch property. *

*

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

     *    getSwitch().add(newItem);
     * 
*

*

*

* Objects of the following type(s) are allowed in the list * {@link FacesConfigFlowDefinitionSwitch } */ public List getSwitch() { if (_switch == null) { _switch = new ArrayList(); } return this._switch; } /** * Gets the value of the flowReturn 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 flowReturn property. *

*

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

     *    getFlowReturn().add(newItem);
     * 
*

*

*

* Objects of the following type(s) are allowed in the list * {@link FacesConfigFlowDefinitionFlowReturn } */ public List getFlowReturn() { if (flowReturn == null) { flowReturn = new ArrayList(); } return this.flowReturn; } /** * Gets the value of the navigationRule 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 navigationRule property. *

*

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

     *    getNavigationRule().add(newItem);
     * 
*

*

*

* Objects of the following type(s) are allowed in the list * {@link FacesConfigNavigationRule } */ public List getNavigationRule() { if (navigationRule == null) { navigationRule = new ArrayList(); } return this.navigationRule; } /** * Gets the value of the flowCall 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 flowCall property. *

*

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

     *    getFlowCall().add(newItem);
     * 
*

*

*

* Objects of the following type(s) are allowed in the list * {@link FacesConfigFlowDefinitionFlowCall } */ public List getFlowCall() { if (flowCall == null) { flowCall = new ArrayList(); } return this.flowCall; } /** * Gets the value of the methodCall 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 methodCall property. *

*

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

     *    getMethodCall().add(newItem);
     * 
*

*

*

* Objects of the following type(s) are allowed in the list * {@link FacesConfigFlowDefinitionFacesMethodCall } */ public List getMethodCall() { if (methodCall == null) { methodCall = new ArrayList(); } return this.methodCall; } /** * Gets the value of the initializer property. * * @return possible object is * {@link FacesConfigFlowDefinitionInitializer } */ public FacesConfigFlowDefinitionInitializer getInitializer() { return initializer; } /** * Sets the value of the initializer property. * * @param value allowed object is * {@link FacesConfigFlowDefinitionInitializer } */ public void setInitializer(final FacesConfigFlowDefinitionInitializer value) { this.initializer = value; } /** * Gets the value of the finalizer property. * * @return possible object is * {@link FacesConfigFlowDefinitionFinalizer } */ public FacesConfigFlowDefinitionFinalizer getFinalizer() { return finalizer; } /** * Sets the value of the finalizer property. * * @param value allowed object is * {@link FacesConfigFlowDefinitionFinalizer } */ public void setFinalizer(final FacesConfigFlowDefinitionFinalizer value) { this.finalizer = value; } /** * Gets the value of the inboundParameter 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 inboundParameter property. *

*

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

     *    getInboundParameter().add(newItem);
     * 
*

*

*

* Objects of the following type(s) are allowed in the list * {@link FacesConfigFlowDefinitionInboundParameter } */ public List getInboundParameter() { if (inboundParameter == null) { inboundParameter = new ArrayList(); } return this.inboundParameter; } /** * Gets the value of the id property. * * @return possible object is * {@link java.lang.String } */ public java.lang.String getId() { return id; } /** * Sets the value of the id property. * * @param value allowed object is * {@link java.lang.String } */ public void setId(final java.lang.String value) { this.id = value; } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy