01: package hero.entity;
02:
03: /*
04: * 25/03/2003 - 14:06:00
05: *
06: * AgenAlarmType.java -
07: * Copyright (C) 2003 Ecoo Team
08: * valdes@loria.fr
09: *
10: *
11: * This program is free software; you can redistribute it and/or
12: * modify it under the terms of the GNU Lesser General Public License
13: * as published by the Free Software Foundation; either version 2
14: * of the License, or (at your option) any later version.
15: *
16: * This program is distributed in the hope that it will be useful,
17: * but WITHOUT ANY WARRANTY; without even the implied warranty of
18: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19: * GNU Lesser General Public License for more details.
20: *
21: * You should have received a copy of the GNU Lesser General Public License
22: * along with this program; if not, write to the Free Software
23: * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
24: */
25:
26: import hero.interfaces.BnAgentLocal;
27:
28: public class AgentAlarmType extends AgentType implements
29: java.io.Serializable {
30:
31: public AgentAlarmType() {
32: }
33:
34: public void agentOperation(BnAgentLocal agent,
35: java.sql.Timestamp date) {
36: // public void agentOperation (BnAgentLocal agent, Object agentInfo) {
37:
38: }
39:
40: }
|