1 16 package org.apache.juddi.datatype; 17 18 29 public class DiscoveryURL implements RegistryObject 30 { 31 String useType; 32 String urlValue; 33 34 37 public DiscoveryURL() 38 { 39 } 40 41 46 public DiscoveryURL(String type,String url) 47 { 48 this.useType = type; 49 this.urlValue = url; 50 } 51 52 56 public void setUseType(String useType) 57 { 58 this.useType = useType; 59 } 60 61 65 public String getUseType() 66 { 67 return this.useType; 68 } 69 70 75 public void setValue(String url) 76 { 77 this.urlValue = url; 78 } 79 80 84 public String getValue() 85 { 86 return this.urlValue; 87 } 88 } | Popular Tags |