1 16 package org.apache.juddi.datatype.request; 17 18 import org.apache.juddi.datatype.RegistryObject; 19 20 32 public class GetAuthToken implements RegistryObject,SecurityPolicy 33 { 34 String generic; 35 String userID; 36 String credential; 37 38 41 public GetAuthToken() 42 { 43 } 44 45 48 public GetAuthToken(String idValue,String credValue) 49 { 50 this.userID = idValue; 51 this.credential = credValue; 52 } 53 54 58 public void setGeneric(String genericValue) 59 { 60 this.generic = genericValue; 61 } 62 63 67 public String getGeneric() 68 { 69 return this.generic; 70 } 71 72 75 public void setUserID(String idValue) 76 { 77 userID = idValue; 78 } 79 80 83 public String getUserID() 84 { 85 return userID; 86 } 87 88 91 public void setCredential(String credValue) 92 { 93 credential = credValue; 94 } 95 96 99 public String getCredential() 100 { 101 return credential; 102 } 103 } | Popular Tags |