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.FacesFlowMethodParameter;
24  
25  /**
26   *
27   * @author Leonardo Uribe
28   */
29  public class FacesFlowMethodCallImpl extends org.apache.myfaces.config.element.FacesFlowMethodCall
30  {
31      private String _id;
32      private String _method;
33      private String _defaultOutcome;
34      
35      private List<FacesFlowMethodParameter> _parameterList;
36      
37      public FacesFlowMethodCallImpl()
38      {
39          _parameterList = new ArrayList<FacesFlowMethodParameter>();
40      }
41  
42      @Override
43      public String getMethod()
44      {
45          return _method;
46      }
47  
48      @Override
49      public String getDefaultOutcome()
50      {
51          return _defaultOutcome;
52      }
53  
54      /**
55       * @param method the method to set
56       */
57      public void setMethod(String method)
58      {
59          this._method = method;
60      }
61  
62      /**
63       * @param defaultOutcome the defaultOutcome to set
64       */
65      public void setDefaultOutcome(String defaultOutcome)
66      {
67          this._defaultOutcome = defaultOutcome;
68      }
69      
70      @Override
71      public String getId()
72      {
73          return _id;
74      }
75  
76      public void setId(String id)
77      {
78          this._id = id;
79      }
80  
81      @Override
82      public List<FacesFlowMethodParameter> getParameterList()
83      {
84          return _parameterList;
85      }
86      
87      public void addParameter(FacesFlowMethodParameter parameter)
88      {
89          _parameterList.add(parameter);
90      }
91  }