1 16 package org.apache.juddi.datatype.request; 17 18 import org.apache.juddi.datatype.RegistryObject; 19 20 24 public class GetPublisherAssertions implements RegistryObject,Publish 25 { 26 String generic; 27 AuthInfo authInfo; 28 29 32 public GetPublisherAssertions() 33 { 34 } 35 36 39 public GetPublisherAssertions(AuthInfo authInfo) 40 { 41 this.authInfo = authInfo; 42 } 43 44 48 public void setGeneric(String genericValue) 49 { 50 this.generic = genericValue; 51 } 52 53 57 public String getGeneric() 58 { 59 return this.generic; 60 } 61 62 65 public void setAuthInfo(AuthInfo authInfo) 66 { 67 this.authInfo = authInfo; 68 } 69 70 73 public AuthInfo getAuthInfo() 74 { 75 return this.authInfo; 76 } 77 } | Popular Tags |