1 package com.sun.corba.se.spi.activation;2 3 4 /**5 * com/sun/corba/se/spi/activation/ServerOperations.java .6 * Generated by the IDL-to-Java compiler (portable), version "3.2"7 * from ../../../../src/share/classes/com/sun/corba/se/spi/activation/activation.idl8 * Saturday, February 9, 2008 2:04:39 AM PST9 */10 11 12 /** Server callback API, passed to Activator in active method.13 */14 public interface ServerOperations 15 {16 17 /** Shutdown this server. Returns after orb.shutdown() completes.18 */19 void shutdown ();20 21 /** Install the server. Returns after the install hook completes22 * execution in the server.23 */24 void install ();25 26 /** Uninstall the server. Returns after the uninstall hook27 * completes execution.28 */29 void uninstall ();30 } // interface ServerOperations31