1 16 package org.apache.juddi.datatype; 17 18 21 public class BusinessKey implements RegistryObject 22 { 23 String keyValue; 24 25 28 public BusinessKey() 29 { 30 } 31 32 37 public BusinessKey(String keyValue) 38 { 39 setValue(keyValue); 40 } 41 42 47 public void setValue(String newValue) 48 { 49 this.keyValue = newValue; 50 } 51 52 57 public String getValue() 58 { 59 return this.keyValue; 60 } 61 } | Popular Tags |