1 22 package org.jboss.metadata.web; 23 24 30 public class ParamValue 31 { 32 public static enum ParamType {CONTEXT_PARAM, INIT_PARAM}; 33 34 private ParamType type; 35 private String description; 36 private String name; 37 private String value; 38 39 public ParamType getType() 40 { 41 return type; 42 } 43 public void setType(ParamType type) 44 { 45 this.type = type; 46 } 47 public String getDescription() 48 { 49 return description; 50 } 51 public void setDescription(String description) 52 { 53 this.description = description; 54 } 55 public String getName() 56 { 57 return name; 58 } 59 public void setName(String name) 60 { 61 this.name = name; 62 } 63 public String getValue() 64 { 65 return value; 66 } 67 public void setValue(String value) 68 { 69 this.value = value; 70 } 71 72 } 73 | Popular Tags |