1 22 package org.jboss.test.util.server; 23 24 30 public class Property 31 { 32 33 private String key; 34 39 public String getKey() 40 { 41 return key; 42 } 43 48 public void setKey(String key) 49 { 50 this.key = key; 51 } 52 57 public String getValue() 58 { 59 return value; 60 } 61 66 public void setValue(String value) 67 { 68 this.value = value; 69 } 70 private String value; 71 72 public Property() 73 { 74 75 } 76 77 } 78 | Popular Tags |