KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > objectweb > jonas > jtests > clients > security > F_AccessControlSL


1 /*
2  * JOnAS: Java(TM) Open Application Server
3  * Copyright (C) 1999 Bull S.A.
4  * Contact: jonas-team@objectweb.org
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or any later version.
10  *
11  * This library is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with this library; if not, write to the Free Software
18  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
19  * USA
20  *
21  * --------------------------------------------------------------------------
22  * $Id: F_AccessControlSL.java,v 1.5 2004/10/08 12:12:20 durieuxp Exp $
23  * --------------------------------------------------------------------------
24  */

25
26 package org.objectweb.jonas.jtests.clients.security;
27
28 import javax.naming.NamingException JavaDoc;
29 import javax.rmi.PortableRemoteObject JavaDoc;
30
31 import junit.framework.Test;
32 import junit.framework.TestSuite;
33
34 import org.objectweb.jonas.jtests.beans.secured.BaseS;
35 import org.objectweb.jonas.jtests.beans.secured.BaseSHome;
36
37 /**
38  * Security Management Suite with a stateless session as first bean
39  *
40  * @author Ph.Coq, Ph.Durieux
41  *
42  */

43
44 public class F_AccessControlSL extends A_AccessControl {
45  
46     private static String JavaDoc BEAN_HOME = "securedBaseSLHome";
47     protected static BaseSHome home = null;
48
49     public F_AccessControlSL(String JavaDoc name) {
50         super(name);
51     }
52
53     /**
54      * return the Home
55      */

56
57     public BaseSHome getHome() {
58         if (home == null) {
59             try {
60                 home = (BaseSHome) PortableRemoteObject.narrow(ictx.lookup(BEAN_HOME), BaseSHome.class);
61             } catch (NamingException JavaDoc e) {
62                 fail("Cannot get bean home "+BEAN_HOME);
63             }
64         }
65         return home;
66     }
67
68     public BaseS getBaseS(String JavaDoc name) throws Exception JavaDoc{
69         return getHome().create();
70     }
71
72     public void removeBaseS(String JavaDoc name) throws Exception JavaDoc {
73         // cannot remove session.
74
}
75
76     /**
77      * init environment:
78      * - load beans
79      */

80     protected void setUp() {
81         super.setUp();
82         useBeans("secured", true);
83     }
84
85
86     /**
87      * This suite is all BMP test cases
88      */

89     public static Test suite() {
90         return new TestSuite(F_AccessControlSL.class);
91     }
92
93     public static void main (String JavaDoc args[]) {
94         String JavaDoc testtorun = null;
95         // Get args
96
for (int argn = 0; argn < args.length; argn++) {
97             String JavaDoc s_arg = args[argn];
98             Integer JavaDoc i_arg;
99             if (s_arg.equals("-n")) {
100                 testtorun = args[++argn];
101             }
102         }
103         if (testtorun == null) {
104             junit.textui.TestRunner.run(suite());
105         } else {
106             junit.textui.TestRunner.run(new F_AccessControlSL(testtorun));
107         }
108     }
109 }
110
Popular Tags