1 24 package org.objectweb.joram.mom.notifications; 25 26 import fr.dyade.aaa.agent.*; 27 28 31 public class GetProxyIdNot extends SyncNotification { 32 33 private String userName; 34 35 private String password; 36 37 private String inaddr; 38 39 public GetProxyIdNot(String userName, 40 String password, 41 String inaddr) { 42 this.userName = userName; 43 this.password = password; 44 this.inaddr = inaddr; 45 } 46 47 public final String getUserName() { 48 return userName; 49 } 50 51 public final String getPassword() { 52 return password; 53 } 54 55 public final String getInAddr() { 56 return inaddr; 57 } 58 59 public void Return(AgentId proxyId) { 60 Return(new Object []{proxyId}); 61 } 62 63 public final AgentId getProxyId() { 64 return (AgentId)getValue(0); 65 } 66 } 67 68 | Popular Tags |