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

com.sun.faces.flow.builder.NavigationCaseBuilderImpl Maven / Gradle / Ivy

There is a newer version: 4.1.0-M1
Show newest version
/*
 * Copyright (c) 1997, 2018 Oracle and/or its affiliates. All rights reserved.
 *
 * This program and the accompanying materials are made available under the
 * terms of the Eclipse Public License v. 2.0, which is available at
 * http://www.eclipse.org/legal/epl-2.0.
 *
 * This Source Code may also be made available under the following Secondary
 * Licenses when the conditions for such availability set forth in the
 * Eclipse Public License v. 2.0 are satisfied: GNU General Public License,
 * version 2 with the GNU Classpath Exception, which is available at
 * https://www.gnu.org/software/classpath/license.html.
 *
 * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
 */

package com.sun.faces.flow.builder;

import com.sun.faces.util.Util;
import java.util.List;
import java.util.Map;
import java.util.Set;
import java.util.concurrent.CopyOnWriteArrayList;
import java.util.concurrent.CopyOnWriteArraySet;
import javax.el.ValueExpression;
import javax.faces.application.NavigationCase;
import javax.faces.flow.builder.NavigationCaseBuilder;

public class NavigationCaseBuilderImpl extends NavigationCaseBuilder {
    
    private FlowBuilderImpl root;
    private MutableNavigationCase navCase;

    public NavigationCaseBuilderImpl(FlowBuilderImpl root) {
        navCase = new MutableNavigationCase();
        this.root = root;
    }
    
    @Override
    public NavigationCaseBuilder toFlowDocumentId(String toFlowDocumentId) {
        Util.notNull("toFlowDocumentId", toFlowDocumentId);
        navCase.setToFlowDocumentId(toFlowDocumentId);
        return this;
    }

    @Override
    public NavigationCaseBuilder fromAction(String fromAction) {
        Util.notNull("fromAction", fromAction);
        navCase.setFromAction(fromAction);
        return this;
    }

    @Override
    public NavigationCaseBuilder fromOutcome(String fromOutcome) {
        Util.notNull("fromOutcome", fromOutcome);
        navCase.setFromOutcome(fromOutcome);
        return this;
    }

    @Override
    public NavigationCaseBuilder fromViewId(String fromViewId) {
        Util.notNull("fromViewId", fromViewId);
        navCase.setFromViewId(fromViewId);
        Map> rules = root._getFlow()._getNavigationCases();
        Set cases = rules.get(fromViewId);
        if (null == cases) {
            cases = new CopyOnWriteArraySet<>();
            rules.put(fromViewId, cases);
        }
        cases.add(navCase);
        return this;
    }

    @Override
    public NavigationCaseBuilder toViewId(String toViewId) {
        Util.notNull("toViewId", toViewId);
        navCase.setToViewId(toViewId);
        return this;
    }

    @Override
    public NavigationCaseBuilder condition(String condition) {
        Util.notNull("condition", condition);
        navCase.setCondition(condition);
        return this;
    }

    @Override
    public NavigationCaseBuilder condition(ValueExpression condition) {
        Util.notNull("condition", condition);
        navCase.setConditionExpression(condition);
        return this;
    }

    @Override
    public RedirectBuilder redirect() {
        navCase.setRedirect(true);
        return new RedirectBuilderImpl();
    }

    private class RedirectBuilderImpl extends NavigationCaseBuilder.RedirectBuilder {

        public RedirectBuilderImpl() {
        }

        @Override
        public RedirectBuilder parameter(String name, String value) {
            Util.notNull("name", name);
            Util.notNull("value", value);
            Map> redirectParams = NavigationCaseBuilderImpl.this.navCase.getParameters();
            List values = redirectParams.get(name);
            if (null == values) {
                values = new CopyOnWriteArrayList<>();
                redirectParams.put(name, values);
            }
            values.add(value);
            return this;
        }

        @Override
        public RedirectBuilder includeViewParams() {
            NavigationCaseBuilderImpl.this.navCase.isIncludeViewParams();
            return this;
        }
    
        
        
        
    }
    
    
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy