1 23 package org.objectweb.joram.mom.notifications; 24 25 26 30 public class Monit_GetDMQSettingsRep extends AdminReply 31 { 32 33 private String dmqId; 34 35 private Integer threshold; 36 37 38 45 public Monit_GetDMQSettingsRep(AdminRequest request, 46 String dmqId, 47 Integer threshold) 48 { 49 super(request, true, null); 50 this.dmqId = dmqId; 51 this.threshold = threshold; 52 } 53 54 55 56 public String getDMQId() 57 { 58 return dmqId; 59 } 60 61 62 public Integer getThreshold() 63 { 64 return threshold; 65 } 66 } 67 | Popular Tags |