1 16 package org.apache.juddi.datatype.response; 17 18 import org.apache.juddi.datatype.RegistryObject; 19 20 21 24 public class Property implements RegistryObject 25 { 26 String name; 27 String value; 28 29 32 public Property() 33 { 34 } 35 36 42 public Property(String name,String value) 43 { 44 this.name = name; 45 this.value = value; 46 } 47 48 53 public void setName(String name) 54 { 55 this.name = name; 56 } 57 58 63 public String getName() 64 { 65 return this.name; 66 } 67 68 73 public void setValue(String value) 74 { 75 this.value = value; 76 } 77 78 83 public String getValue() 84 { 85 return this.value; 86 } 87 } | Popular Tags |