1 24 package org.objectweb.joram.mom.notifications; 25 26 import org.objectweb.joram.shared.admin.AdminRequest; 27 28 import fr.dyade.aaa.agent.*; 29 30 public class DestinationAdminRequestNot 31 extends fr.dyade.aaa.agent.Notification { 32 33 private AdminRequest request; 34 35 private AgentId replyTo; 36 37 private String requestMsgId; 38 39 private String replyMsgId; 40 41 public DestinationAdminRequestNot( 42 AdminRequest request, 43 AgentId replyTo, 44 String requestMsgId, 45 String replyMsgId) { 46 this.request = request; 47 this.replyTo = replyTo; 48 this.requestMsgId = requestMsgId; 49 this.replyMsgId = replyMsgId; 50 } 51 52 public final AdminRequest getRequest() { 53 return request; 54 } 55 56 public final AgentId getReplyTo() { 57 return replyTo; 58 } 59 60 public final String getRequestMsgId() { 61 return requestMsgId; 62 } 63 64 public final String getReplyMsgId() { 65 return replyMsgId; 66 } 67 } 68 | Popular Tags |