1 16 package org.apache.juddi.datatype.request; 17 18 import org.apache.juddi.datatype.RegistryObject; 19 20 26 public class DiscardAuthToken implements RegistryObject,SecurityPolicy 27 { 28 String generic; 29 AuthInfo authInfo; 30 31 34 public DiscardAuthToken() 35 { 36 } 37 38 41 public DiscardAuthToken(AuthInfo info) 42 { 43 this.authInfo = info; 44 } 45 46 50 public void setGeneric(String genericValue) 51 { 52 this.generic = genericValue; 53 } 54 55 59 public String getGeneric() 60 { 61 return this.generic; 62 } 63 64 67 public void setAuthInfo(AuthInfo info) 68 { 69 this.authInfo = info; 70 } 71 72 75 public AuthInfo getAuthInfo() 76 { 77 return this.authInfo; 78 } 79 } | Popular Tags |