test/java/rmi/activation/ActivationGroupDesc/checkDefaultGroupName/CheckDefaultGroupName.java

Print this page




   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  * @author Laird Dornin
  29  *
  30  * @library ../../../testlibrary
  31  * @build TestLibrary
  32  * @run main CheckDefaultGroupName
  33  */
  34 
  35 import java.rmi.activation.*;
  36 
  37 /**
  38  * Test checks the group name for an ActivationGroupDesc which is
  39  * created with no explicit activation group implementation class name
  40  * supplied.
  41  */
  42 public class CheckDefaultGroupName {
  43     public static void main(String[] args) {
  44         System.out.println("\n\nRegression test for, 4252236\n\n");
  45 
  46         ActivationGroupDesc groupDesc =
  47             new ActivationGroupDesc(null, null);


   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);