01: package com.xoetrope.service;
02:
03: import net.xoetrope.optional.service.ServiceProxy;
04:
05: /**
06: * A specialization of the ServiceProxy class used for implementations that will
07: * be called in the event of a failure in remote calls. Implementations of this
08: * class will provide a local implementation of the Service so that work can
09: * continue locally.
10: *
11: * <p> Copyright (c) Xoetrope Ltd., 2001-2006, This software is licensed under
12: * the GNU Public License (GPL), please see license.txt for more details. If
13: * you make commercial use of this software you must purchase a commercial
14: * license from Xoetrope.</p>
15: * <p> $Revision: 1.4 $</p>
16: */
17: public abstract class FailoverServiceProxy extends ServiceProxy {
18: public FailoverServiceProxy() {
19: }
20: }
|