View Javadoc

1   /*
2    * Licensed to the Apache Software Foundation (ASF) under one
3    * or more contributor license agreements.  See the NOTICE file
4    * distributed with this work for additional information
5    * regarding copyright ownership.  The ASF licenses this file
6    * to you under the Apache License, Version 2.0 (the
7    * "License"); you may not use this file except in compliance
8    * with the License.  You may obtain a copy of the License at
9    *
10   *   http://www.apache.org/licenses/LICENSE-2.0
11   *
12   * Unless required by applicable law or agreed to in writing,
13   * software distributed under the License is distributed on an
14   * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15   * KIND, either express or implied.  See the License for the
16   * specific language governing permissions and limitations
17   * under the License.
18   */
19  package org.apache.myfaces.config.impl.digester.elements;
20  
21  import java.util.ArrayList;
22  import java.util.List;
23  import org.apache.myfaces.config.element.NavigationCase;
24  
25  /**
26   *
27   * @author Leonardo Uribe
28   */
29  public class FacesFlowSwitchImpl extends org.apache.myfaces.config.element.FacesFlowSwitch
30  {
31      private String _id;
32      private NavigationCase _defaultOutcome;
33      private List<NavigationCase> _navigationCaseList;
34      
35      public FacesFlowSwitchImpl()
36      {
37          this._navigationCaseList = new ArrayList<NavigationCase>();
38      }
39  
40      @Override
41      public List<NavigationCase> getNavigationCaseList()
42      {
43          return _navigationCaseList;
44      }
45      
46      public void addNavigationCase(NavigationCase navcase)
47      {
48          _navigationCaseList.add(navcase);
49      }
50  
51      @Override
52      public NavigationCase getDefaultOutcome()
53      {
54          return _defaultOutcome;
55      }
56  
57      /**
58       * @param defaultOutcome the defaultOutcome to set
59       */
60      public void setDefaultOutcome(NavigationCase defaultOutcome)
61      {
62          this._defaultOutcome = defaultOutcome;
63      }
64      
65      @Override
66      public String getId()
67      {
68          return _id;
69      }
70  
71      public void setId(String id)
72      {
73          this._id = id;
74      }
75  
76  }