KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > objectweb > jonas > jtests > clients > security > G_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: G_AccessControlSL.java,v 1.4 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 G_AccessControlSL extends B_AccessControl {
45  
46     private static String JavaDoc BEAN_HOME = "securedBaseSLHome";
47     protected static BaseSHome home = null;
48
49     public G_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     public void testEmpty() throws Exception JavaDoc {
86     }
87     /**
88      * This suite is all BMP test cases
89      */

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