View Javadoc

1   /*
2    * ActionParameterValueImpl.java
3    * Created on 27 Август 2006 г., 23:47
4    */
5   
6   package org.weda.action.impl;
7   
8   import org.weda.action.ActionParameterValue;
9   
10  /**
11   *
12   * @author Mikhail Titov
13   */
14  public class ActionParameterValueImpl implements ActionParameterValue {
15      private String name;
16      private String pattern;
17      private String value;
18  
19      public String getName() {
20          return name;
21      }
22  
23      public void setName(String name) {
24          this.name = name;
25      }
26  
27      public String getPattern() {
28          return pattern;
29      }
30  
31      public void setPattern(String pattern) {
32          this.pattern = pattern;
33      }
34  
35      public String getValue() {
36          return value;
37      }
38  
39      public void setValue(String value) {
40          this.value = value;
41      }
42  }