01: /**
02: * JOnAS: Java(TM) Open Application Server
03: * Copyright (C) 2006 Bull S.A.S.
04: * Contact: jonas-team@objectweb.org
05: * Copyright (C) 2006 Distributed Systems Lab.
06: * Universidad Politécnica de Madrid (Spain)
07: * Contact: http://lsd.ls.fi.upm.es/lsd
08: *
09: * This library is free software; you can redistribute it and/or
10: * modify it under the terms of the GNU Lesser General Public
11: * License as published by the Free Software Foundation; either
12: * version 2.1 of the License, or any later version.
13: *
14: * This library is distributed in the hope that it will be useful,
15: * but WITHOUT ANY WARRANTY; without even the implied warranty of
16: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17: * Lesser General Public License for more details.
18: *
19: * You should have received a copy of the GNU Lesser General Public
20: * License along with this library; if not, write to the Free Software
21: * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
22: * USA
23: *
24: * --------------------------------------------------------------------------
25: * $Id: HaService.java 8098 2006-03-09 14:15:42Z durieuxp $
26: * --------------------------------------------------------------------------
27: */package org.objectweb.jonas.ha;
28:
29: import org.objectweb.carol.cmi.ha.ReplicationManager;
30:
31: import org.objectweb.jonas.service.Service;
32:
33: /**
34: * JOnAS HA Service interface.
35: * @author Francisco Perez-Sorrosal (fpsorrosal@no-spam@fi.upm.es)
36: * @author Alberto Paz-Jimenez (apaz@no-spam@fi.upm.es)
37: * @author benoit pelletier
38: */
39: public interface HaService extends Service {
40:
41: /**
42: * @return Return the replication manager
43: */
44: public ReplicationManager getReplicationManager();
45:
46: }
|