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