blob: 953e8c6090632361d5dbbb0eb03e323dc9fe3172 [file] [log] [blame]
/*
* 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.myfaces.config.impl.element;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
import org.apache.myfaces.config.element.NavigationCase;
/**
*
* @author Leonardo Uribe
*/
public class FacesFlowSwitchImpl extends org.apache.myfaces.config.element.FacesFlowSwitch
{
private String _id;
private NavigationCase defaultOutcome;
private List<NavigationCase> navigationCaseList;
@Override
public List<NavigationCase> getNavigationCaseList()
{
if (navigationCaseList == null)
{
return Collections.emptyList();
}
return navigationCaseList;
}
public void addNavigationCase(NavigationCase navcase)
{
if (navigationCaseList == null)
{
navigationCaseList = new ArrayList<>(5);
}
navigationCaseList.add(navcase);
}
@Override
public NavigationCase getDefaultOutcome()
{
return defaultOutcome;
}
public void setDefaultOutcome(NavigationCase defaultOutcome)
{
this.defaultOutcome = defaultOutcome;
}
@Override
public String getId()
{
return _id;
}
public void setId(String id)
{
this._id = id;
}
}