1 23 package org.objectweb.joram.mom.dest; 24 25 public interface DestinationImplMBean { 26 29 String toString(); 30 31 36 String getDestinationId(); 37 38 44 boolean isFreeReading(); 45 46 51 void setFreeReading(boolean on); 52 53 59 boolean isFreeWriting(); 60 61 66 void setFreeWriting(boolean on); 67 68 73 String [] getRights(); 74 75 82 String getRight(String userid); 83 85 91 String getDMQId(); 92 93 98 long getCreationTimeInMillis(); 99 100 106 String getCreationDate(); 107 108 114 long getNbMsgsReceiveSinceCreation(); 115 116 123 long getNbMsgsDeliverSinceCreation(); 124 125 131 long getNbMsgsSendToDMQSinceCreation(); 132 } 133 | Popular Tags |