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 View extends EJBObject { 37 38 42 AlarmData[] getAllAlarms() throws RemoteException ; 43 44 48 AlarmData[] getNewAlarms() throws RemoteException ; 49 50 54 String [] getProfils() throws RemoteException ; 55 56 60 void setProfil(String name) throws RemoteException ; 61 62 67 int alarmLevel(String name) throws RemoteException ; 68 69 73 void forgetAlarm(String pk) throws RemoteException ; 74 75 81 String newProfil(String device, String level) throws RemoteException ; 82 83 87 void removeProfil(String name) throws RemoteException ; 88 } | Popular Tags |