1 22 23 package org.jboss.resource.deployment.ds.metadata; 24 25 31 public class DsPropertyMetaData implements DsElementMetaData 32 { 33 34 private static final long serialVersionUID = 2979302139885867486L; 35 36 37 private String name; 38 39 40 private String value; 41 42 43 private String type; 44 45 public String getType() 46 { 47 return type; 48 } 49 50 public void setType(String type) 51 { 52 this.type = type; 53 } 54 55 public String getName() 56 { 57 return name; 58 } 59 60 public void setName(String name) 61 { 62 this.name = name; 63 } 64 65 public String getValue() 66 { 67 return value; 68 } 69 70 public void setValue(String value) 71 { 72 this.value = value; 73 } 74 75 } 76 | Popular Tags |