< prev index next >

test/java/rmi/activation/Activatable/restartService/RestartService.java

Print this page




  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24 /* @test
  25  * @bug 4095165 4321151
  26  * @summary synopsis: activator should restart daemon services
  27  * @author Ann Wollrath
  28  *
  29  * @library ../../../testlibrary




  30  * @build TestLibrary RMID ActivationLibrary ActivateMe RestartService_Stub
  31  * @run main/othervm/policy=security.policy/timeout=240 RestartService
  32  */
  33 
  34 import java.io.*;
  35 import java.rmi.*;
  36 import java.rmi.activation.*;
  37 import java.rmi.server.*;
  38 import java.rmi.registry.*;
  39 import java.util.Vector;
  40 import java.util.Properties;
  41 
  42 public class RestartService
  43         implements ActivateMe, Runnable
  44 {
  45 
  46     private ActivationID id;
  47     private static Object lock = new Object();
  48     private Vector responders = new Vector();
  49 




  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24 /* @test
  25  * @bug 4095165 4321151
  26  * @summary synopsis: activator should restart daemon services
  27  * @author Ann Wollrath
  28  *
  29  * @library ../../../testlibrary
  30  * @modules java.rmi/sun.rmi.registry
  31  *          java.rmi/sun.rmi.server
  32  *          java.rmi/sun.rmi.transport
  33  *          java.rmi/sun.rmi.transport.tcp
  34  * @build TestLibrary RMID ActivationLibrary ActivateMe RestartService_Stub
  35  * @run main/othervm/policy=security.policy/timeout=240 RestartService
  36  */
  37 
  38 import java.io.*;
  39 import java.rmi.*;
  40 import java.rmi.activation.*;
  41 import java.rmi.server.*;
  42 import java.rmi.registry.*;
  43 import java.util.Vector;
  44 import java.util.Properties;
  45 
  46 public class RestartService
  47         implements ActivateMe, Runnable
  48 {
  49 
  50     private ActivationID id;
  51     private static Object lock = new Object();
  52     private Vector responders = new Vector();
  53 


< prev index next >