01: /**
02: * JOnAS: Java(TM) Open Application Server
03: * Copyright (C) 1999-2004 Bull S.A.S.
04: * Contact: jonas-team@objectweb.org
05: *
06: * This library is free software; you can redistribute it and/or
07: * modify it under the terms of the GNU Lesser General Public
08: * License as published by the Free Software Foundation; either
09: * 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: Initializer.java 9905 2007-01-05 12:34:30Z benoitf $
23: * --------------------------------------------------------------------------
24: *
25: */package org.objectweb.jonas.security.interceptors.jrmp.ctxcheck;
26:
27: import org.objectweb.carol.rmi.jrmp.interceptor.JInitInfo;
28: import org.objectweb.carol.rmi.jrmp.interceptor.JInitializer;
29:
30: /**
31: * Adds on the server side an interceptor which will validate the security
32: * context.
33: * @author Florent Benoit
34: */
35: public class Initializer implements JInitializer {
36:
37: /**
38: * In JRMP the 2 method( per and post init have the same consequences ...
39: * @param JInitInfo the JInit Information
40: */
41: public void pre_init(JInitInfo info) {
42:
43: try {
44: info
45: .add_server_request_interceptor(new ServerInterceptor());
46: } catch (Exception e) {
47: throw new IllegalStateException(
48: "Cannot built interceptor: " + e.getMessage());
49: }
50: }
51:
52: /**
53: * In JRMP the 2 method( per and post init have the same consequences ...
54: * @param JInitInfo the JInit Information
55: */
56: public void post_init(JInitInfo info) {
57: // do nothing
58: }
59:
60: }
|