1 26 27 package org.objectweb.alarm.beans; 28 29 import java.rmi.RemoteException ; 30 31 import javax.ejb.EJBObject ; 32 33 36 public interface AlarmRecord extends EJBObject { 37 38 43 void update(int s) throws RemoteException ; 44 45 48 void forget() throws RemoteException ; 49 50 53 void setProcessed() throws RemoteException ; 54 55 59 String getFrom() throws RemoteException ; 60 61 65 int getSeverity() throws RemoteException ; 66 67 71 int getCount() throws RemoteException ; 72 73 77 int getAlarmCount() throws RemoteException ; 78 79 83 int getNewIdent() throws RemoteException ; 84 85 89 AlarmData getAlarmData() throws RemoteException ; 90 } | Popular Tags |