1 16 package org.apache.juddi.datatype; 17 18 24 public class OverviewURL implements RegistryObject 25 { 26 String urlValue; 27 28 31 public OverviewURL() 32 { 33 } 34 35 40 public OverviewURL(String url) 41 { 42 this.urlValue = url; 43 } 44 45 50 public void setValue(String url) 51 { 52 this.urlValue = url; 53 } 54 55 60 public String getValue() 61 { 62 return this.urlValue; 63 } 64 } | Popular Tags |