1 24 package org.objectweb.joram.mom.notifications; 25 26 import fr.dyade.aaa.agent.AgentId; 27 28 29 34 public class SetDMQRequest extends AdminRequest 35 { 36 37 private AgentId dmqId; 38 39 40 47 public SetDMQRequest(String id, AgentId dmqId) 48 { 49 super(id); 50 this.dmqId = dmqId; 51 } 52 53 54 57 public AgentId getDmqId() 58 { 59 return dmqId; 60 } 61 } 62 | Popular Tags |