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

javax.faces.flow.Flow Maven / Gradle / Ivy

The newest version!
/*
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
 * 
 * Copyright (c) 1997-2012 Oracle and/or its affiliates. All rights reserved.
 * 
 * The contents of this file are subject to the terms of either the GNU
 * General Public License Version 2 only ("GPL") or the Common Development
 * and Distribution License("CDDL") (collectively, the "License").  You
 * may not use this file except in compliance with the License.  You can
 * obtain a copy of the License at
 * https://glassfish.java.net/public/CDDL+GPL_1_1.html
 * or packager/legal/LICENSE.txt.  See the License for the specific
 * language governing permissions and limitations under the License.
 * 
 * When distributing the software, include this License Header Notice in each
 * file and include the License file at packager/legal/LICENSE.txt.
 * 
 * GPL Classpath Exception:
 * Oracle designates this particular file as subject to the "Classpath"
 * exception as provided by Oracle in the GPL Version 2 section of the License
 * file that accompanied this code.
 * 
 * Modifications:
 * If applicable, add the following below the License Header, with the fields
 * enclosed by brackets [] replaced by your own identifying information:
 * "Portions Copyright [year] [name of copyright owner]"
 * 
 * Contributor(s):
 * If you wish your version of this file to be governed by only the CDDL or
 * only the GPL Version 2, indicate your decision by adding "[Contributor]
 * elects to include this software in this distribution under the [CDDL or GPL
 * Version 2] license."  If you don't indicate a single choice of license, a
 * recipient has the option to distribute your version of this file under
 * either the CDDL, the GPL Version 2 or to extend the choice of license to
 * its licensees as provided above.  However, if you add GPL Version 2 code
 * and therefore, elected the GPL Version 2 license, then the option applies
 * only if the new code is made subject to such option by the copyright
 * holder.

 */
package javax.faces.flow;

import java.util.List;
import java.util.Map;
import java.util.Set;
import javax.el.MethodExpression;
import javax.faces.application.NavigationCase;
import javax.faces.lifecycle.ClientWindow;

/**
 * 

Flow is the runtime * representation of a Faces Flow. Once placed into service by the * runtime, an instance of this class is immutable. The implementation * must be thread-safe because instances will be shared across all * usages of the flow within the application.

* * * @since 2.2 */ public abstract class Flow { // /** *

Return the immutable id for this * Flow. This must be unique within the defining document (such as * an Application Configuration Resources file), but need not be * unique within the entire application.

* * @return the id. * @since 2.2 */ public abstract String getId(); /** *

Return the immutable application unique * identifier for the document in which the argument flow is defined.

* * @return the defining document id * @since 2.2 */ public abstract String getDefiningDocumentId(); /** *

Return the immutable id for the * default node that should be activated when this flow is * entered.

* * @return the id of the start node * * @since 2.2 */ public abstract String getStartNodeId(); /** *

Return the {@code MethodExpression} * that must be called by the runtime as the last thing that happens * before exiting this flow. Any {@link FlowScoped} beans declared * for this flow must remain in scope until after control returns * from the method referenced by this {@code MethodExpression}.

* * @return the {@code MethodExpresion} for the finalizer. * @since 2.2 */ public abstract MethodExpression getFinalizer(); /** *

Return the {@code MethodExpression} * that must be called by the runtime immediately after activating * any {@link FlowScoped} beans declared for this flow.

* * @return the {@code MethodExpresion} for the initializer. * @since 2.2 */ public abstract MethodExpression getInitializer(); //
// /** *

Return an immutable data structure * containing the inbound parameters that have been declared for * this flow. See {@link FlowHandler#transition} for the * specification of how these parameters are used. Inbound * parameters are associated with a specific flow instance, while * outbound parameters are associated with a {@link FlowCallNode} * that causes the transition to a new flow.

* * @return the inbound parameters * * @since 2.2 */ public abstract Map getInboundParameters(); /** *

Return an immutable data structure * containing all of the view nodes declared for this flow.

* * @return the view nodes for this flow * @since 2.2 */ public abstract List getViews(); /** *

Return an immutable data structure * containing all of the return nodes declared for this flow.

* * @return the return nodes for this flow. * * @since 2.2 */ public abstract Map getReturns(); /** *

Return an immutable data structure * containing all of the switch nodes declared for this flow.

* * @return the switch nodes for this flow * * @since 2.2 */ public abstract Map getSwitches(); /** *

Return an immutable data structure * containing all the flow call nodes declared for this flow.

* * @return the flow call nodes for this flow * * @since 2.2 */ public abstract Map getFlowCalls(); /** *

Return the {@link FlowCallNode} that * represents calling the {@code targetFlow} from this flow, or * {@code null} if {@code targetFlow} cannot be reached from this * flow.

* * @param targetFlow the flow for which the {@link FlowCallNode} is to be returned * * @return a {@link FlowCallNode} for the argument flow or {@code null} * * @since 2.2 */ public abstract FlowCallNode getFlowCall(Flow targetFlow); /** *

Return an immutable data structure * containing all the method call nodes declared for this flow.

* * @return the method call nodes for this flow * * @since 2.2 */ public abstract List getMethodCalls(); //
// /** *

Return the generic {@link FlowNode} by id, * or {@code null} if not found.

* * @param nodeId the node id for which the {@link FlowNode} is to be returned * * @return the {@link FlowNode} or {@code null} */ public abstract FlowNode getNode(String nodeId); /** *

Return an unmodifiable view of the * navigation cases within this flow.

* * @return the navigation cases, */ public abstract Map> getNavigationCases(); //
// /** *

Get the {@link ClientWindow}'s id and * append "_" and the return from {@link #getId}. Return the result.

* * @return the generated client window id for this flow. * * @param curWindow the * * @since 2.2 */ public abstract String getClientWindowFlowId(ClientWindow curWindow); //
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy