1:
37:
38:
39: package ;
40:
41: import ;
42: import ;
43: import ;
44: import ;
45: import ;
46: import ;
47: import ;
48:
49: public abstract class Activatable extends RemoteServer
50: {
51: static final long serialVersionUID = -3120617863591563455L;
52:
53: protected Activatable(String location, MarshalledObject data, boolean restart, int port) throws ActivationException, RemoteException {
54: throw new Error("Not implemented");
55: }
56:
57: protected Activatable(String location, MarshalledObject data, boolean restart, int port, RMIClientSocketFactory csf, RMIServerSocketFactory ssf) throws ActivationException, RemoteException {
58: throw new Error("Not implemented");
59: }
60:
61: protected Activatable(ActivationID id, int port) throws RemoteException {
62: throw new Error("Not implemented");
63: }
64:
65: protected Activatable(ActivationID id, int port, RMIClientSocketFactory csf, RMIServerSocketFactory ssf) throws RemoteException {
66: throw new Error("Not implemented");
67: }
68:
69: protected ActivationID getID() {
70: throw new Error("Not implemented");
71: }
72:
73: public static Remote register(ActivationDesc desc) throws UnknownGroupException, ActivationException, RemoteException {
74: throw new Error("Not implemented");
75: }
76:
77: public static boolean inactive(ActivationID id) throws UnknownObjectException, ActivationException, RemoteException {
78: throw new Error("Not implemented");
79: }
80:
81: public static void unregister(ActivationID id) throws UnknownObjectException, ActivationException, RemoteException {
82: throw new Error("Not implemented");
83: }
84:
85: public static ActivationID exportObject(Remote obj, String location, MarshalledObject data, boolean restart, int port) throws ActivationException, RemoteException {
86: throw new Error("Not implemented");
87: }
88:
89: public static ActivationID exportObject(Remote obj, String location, MarshalledObject data, boolean restart, int port, RMIClientSocketFactory csf, RMIServerSocketFactory ssf) throws ActivationException, RemoteException {
90: throw new Error("Not implemented");
91: }
92:
93: public static Remote exportObject(Remote obj, ActivationID id, int port) throws RemoteException {
94: throw new Error("Not implemented");
95: }
96:
97: public static Remote exportObject(Remote obj, ActivationID id, int port, RMIClientSocketFactory csf, RMIServerSocketFactory ssf) throws RemoteException {
98: throw new Error("Not implemented");
99: }
100:
101: public static boolean unexportObject(Remote obj, boolean force) throws NoSuchObjectException {
102: throw new Error("Not implemented");
103: }
104:
105: }