1 16 package org.apache.juddi.datatype.response; 17 18 import org.apache.juddi.datatype.RegistryObject; 19 20 23 public class KeysOwned implements RegistryObject 24 { 25 String fromKey; 26 String toKey; 27 28 31 public KeysOwned() 32 { 33 } 34 35 38 public void setFromKey(String keyValue) 39 { 40 this.fromKey = keyValue; 41 } 42 43 46 public void setToKey(String keyValue) 47 { 48 this.toKey = keyValue; 49 } 50 51 54 public String getFromKey() 55 { 56 return this.fromKey; 57 } 58 59 62 public String getToKey() 63 { 64 return this.toKey; 65 } 66 } | Popular Tags |