1 16 package org.apache.juddi.datatype.request; 17 18 import org.apache.juddi.datatype.RegistryObject; 19 20 27 public class AuthInfo implements RegistryObject 28 { 29 String value; 30 31 34 public AuthInfo() 35 { 36 } 37 38 42 public AuthInfo(String auth) 43 { 44 this.value = auth; 45 } 46 47 51 public void setValue(String newValue) 52 { 53 this.value = newValue; 54 } 55 56 60 public String getValue() 61 { 62 return this.value; 63 } 64 } | Popular Tags |