comparison src/org/dancres/blitz/remote/AdminServer.java @ 0:3dc0c5604566

Initial checkin of blitz 2.0 fcs - no installer yet.
author Dan Creswell <dan.creswell@gmail.com>
date Sat, 21 Mar 2009 11:00:06 +0000
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:3dc0c5604566
1 package org.dancres.blitz.remote;
2
3 import java.rmi.Remote;
4
5 import com.sun.jini.admin.DestroyAdmin;
6
7 import net.jini.admin.JoinAdmin;
8
9 /**
10 All Admin interfaces are grouped under this interface to make
11 differentiation between the various remote aspects easier.
12 Note that although we implement destroyadmin we only shutdown - we do
13 not delete persistent storage. This allows for remote shutdown which, IMHO,
14 should be a separate management method. If one wishes to actually destroy
15 a Blitz instance, one could call this destroy method and then delete the
16 contents of the persistence and log directories as specified in the
17 config file.
18 */
19 public interface AdminServer extends Remote, JoinAdmin, StatsAdmin,
20 BlitzAdmin, DestroyAdmin, EntryViewAdmin {
21 }