1 /*
   2  * Copyright (c) 1999, 2012, Oracle and/or its affiliates. All rights reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.
   8  *
   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  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 /*
  25  * @test
  26  * @bug 4252236
  27  * @summary ActivationGroupDesc should not do early binding of default classname
  28  *          This test doesn't need to run with othervm option as all it does is 
  29  *          create an ActivationGroupDesc instance, which has no side effects
  30  * @author Laird Dornin
  31  *
  32  * @library ../../../testlibrary
  33  * @build TestLibrary
  34  * @run main CheckDefaultGroupName
  35  */
  36 
  37 import java.rmi.activation.*;
  38 
  39 /**
  40  * Test checks the group name for an ActivationGroupDesc which is
  41  * created with no explicit activation group implementation class name
  42  * supplied.
  43  */
  44 public class CheckDefaultGroupName {
  45     public static void main(String[] args) {
  46         System.out.println("\n\nRegression test for, 4252236\n\n");
  47 
  48         ActivationGroupDesc groupDesc =
  49             new ActivationGroupDesc(null, null);
  50 
  51         String className = groupDesc.getClassName();
  52         if (className != null) {
  53             TestLibrary.bomb("ActivationGroupDesc had incorrect default" +
  54                              " group implementation class name: " + className);
  55         } else {
  56             System.err.println("test passed, had correct default group" +
  57                                " implementation class name: " + className +
  58                                "\n\n");
  59         }
  60     }
  61 }