1 23 package org.objectweb.joram.shared.admin; 24 25 26 30 public class Monitor_GetDMQSettingsRep extends Monitor_Reply { 31 private static final long serialVersionUID = -2656581907891308694L; 32 33 34 private String dmqId; 35 36 private Integer threshold; 37 38 44 public Monitor_GetDMQSettingsRep(String dmqId, Integer threshold) { 45 this.dmqId = dmqId; 46 this.threshold = threshold; 47 } 48 49 50 public String getDMQName() { 51 return dmqId; 52 } 53 54 55 public Integer getThreshold() { 56 return threshold; 57 } 58 } 59 | Popular Tags |