1 24 package org.objectweb.joram.mom.proxies; 25 26 import fr.dyade.aaa.agent.AgentId; 27 import fr.dyade.aaa.agent.Notification; 28 29 30 34 public class AdminNotification extends Notification 35 { 36 37 private AgentId proxyId; 38 39 private String name; 40 41 private String pass; 42 43 50 AdminNotification(AgentId proxyId, String name, String pass) 51 { 52 this.proxyId = proxyId; 53 this.name = name; 54 this.pass = pass; 55 } 56 57 58 59 public AgentId getProxyId() 60 { 61 return proxyId; 62 } 63 64 65 public String getName() 66 { 67 return name; 68 } 69 70 71 public String getPass() 72 { 73 return pass; 74 } 75 } 76 | Popular Tags |