01: /*
02: * JBoss, Home of Professional Open Source.
03: * Copyright 2006, Red Hat Middleware LLC, and individual contributors
04: * as indicated by the @author tags. See the copyright.txt file in the
05: * distribution for a full listing of individual contributors.
06: *
07: * This is free software; you can redistribute it and/or modify it
08: * under the terms of the GNU Lesser General Public License as
09: * published by the Free Software Foundation; either version 2.1 of
10: * the License, or (at your option) any later version.
11: *
12: * This software is distributed in the hope that it will be useful,
13: * but WITHOUT ANY WARRANTY; without even the implied warranty of
14: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15: * Lesser General Public License for more details.
16: *
17: * You should have received a copy of the GNU Lesser General Public
18: * License along with this software; if not, write to the Free
19: * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
20: * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
21: */
22: package org.jboss.test.classloader.scoping.naming.service;
23:
24: import javax.naming.InitialContext;
25: import javax.naming.Context;
26: import javax.management.MBeanServer;
27: import javax.management.ObjectName;
28: import javax.management.Attribute;
29:
30: import org.jboss.mx.util.MBeanServerLocator;
31:
32: /** A service that binds custom serializable objects into jndi for use by
33: * a web app to test the behavior of jndi lookups across class loading
34: * scopes.
35: *
36: * @author Scott.Stark@jboss.org
37: * @version $Revision: 57211 $
38: */
39: public class BindingService {
40: private String[] names = { "Name0", "Name1", "Name2" };
41: private Boolean origCallByValue;
42:
43: public String[] getNames() {
44: return names;
45: }
46:
47: public void setNames(String[] names) {
48: this .names = names;
49: }
50:
51: public void start() throws Exception {
52: // Put the NamingService into call by value mode
53: MBeanServer server = MBeanServerLocator.locateJBoss();
54: ObjectName namingService = new ObjectName(
55: "jboss:service=Naming");
56: origCallByValue = (Boolean) server.getAttribute(namingService,
57: "CallByValue");
58: Attribute callByValue = new Attribute("CallByValue",
59: Boolean.TRUE);
60: server.setAttribute(namingService, callByValue);
61: System.out.println("NamingService.CallByValue set to true");
62:
63: InitialContext ctx = new InitialContext();
64: Context testCtx = ctx.createSubcontext("shared-context");
65: System.out.println("Created shared-context");
66: testCtx.bind("KeyCount", new Integer(names.length));
67: System.out.println("Bound KeyCount");
68: for (int n = 0; n < names.length; n++) {
69: String key = "Key#" + n;
70: BindValue value = new BindValue();
71: value.setValue("Value#" + n);
72: testCtx.bind(key, value);
73: System.out.println("Bound " + key);
74: }
75: }
76:
77: public void stop() throws Exception {
78: MBeanServer server = MBeanServerLocator.locateJBoss();
79: ObjectName namingService = new ObjectName(
80: "jboss:service=Naming");
81: Attribute callByValue = new Attribute("CallByValue",
82: origCallByValue);
83: server.setAttribute(namingService, callByValue);
84: System.out.println("NamingService.CallByValue restored to: "
85: + origCallByValue);
86:
87: InitialContext ctx = new InitialContext();
88: Context testCtx = (Context) ctx.lookup("shared-context");
89: testCtx.unbind("KeyCount");
90: System.out.println("Unbound KeyCount");
91: for (int n = 0; n < names.length; n++) {
92: String key = "Key#" + n;
93: testCtx.unbind(key);
94: System.out.println("Unbound " + key);
95: }
96: ctx.unbind("shared-context");
97: System.out.println("Destroyed shared-context");
98: }
99: }
|