1 20 package org.jboss.jmx.adaptor.snmp.agent; 21 22 import javax.management.Notification ; 23 24 52 public interface NotificationWrapper 53 { 54 public static final String MESSAGE_TAG = "n:message"; 56 public static final String SEQNO_TAG = "n:sequenceNumber"; 57 public static final String TSTAMP_TAG = "n:timeStamp"; 58 public static final String TYPE_TAG = "n:type"; 59 public static final String ALL_TAG = "n:all"; 60 public static final String CLASS_TAG = "n:class"; 61 62 public static final String STARTTIME_TAG = "a:startTime"; 64 public static final String UPTIME_TAG = "a:uptime"; 65 public static final String TRAPCOUNT_TAG = "a:trapCount"; 66 67 70 public void set(Clock uptime, Counter count); 71 72 78 public void prime(Notification n); 79 80 91 public Object get(String attrTag) 92 throws MappingFailedException; 93 94 } | Popular Tags |