01: /**
02: * Licensed to the Apache Software Foundation (ASF) under one or more
03: * contributor license agreements. See the NOTICE file distributed with
04: * this work for additional information regarding copyright ownership.
05: * The ASF licenses this file to You under the Apache License, Version 2.0
06: * (the "License"); you may not use this file except in compliance with
07: * the License. You may obtain a copy of the License at
08: *
09: * http://www.apache.org/licenses/LICENSE-2.0
10: *
11: * Unless required by applicable law or agreed to in writing, software
12: * distributed under the License is distributed on an "AS IS" BASIS,
13: * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14: * See the License for the specific language governing permissions and
15: * limitations under the License.
16: */package org.apache.geronimo.naming.deployment;
17:
18: import java.util.Map;
19:
20: import org.apache.geronimo.common.DeploymentException;
21: import org.apache.geronimo.gbean.GBeanInfo;
22: import org.apache.geronimo.gbean.GBeanInfoBuilder;
23: import org.apache.geronimo.j2ee.deployment.Module;
24: import org.apache.geronimo.j2ee.j2eeobjectnames.NameFactory;
25: import org.apache.xmlbeans.QNameSet;
26: import org.apache.xmlbeans.XmlObject;
27:
28: /**
29: * @version $Rev: 535381 $ $Date: 2007-05-04 14:04:18 -0700 (Fri, 04 May 2007) $
30: */
31: public class UserTransactionRefBuilder extends AbstractNamingBuilder {
32:
33: public void buildNaming(XmlObject specDD, XmlObject plan,
34: Module module, Map componentContext)
35: throws DeploymentException {
36: // EARContext rootContext = module.getRootEarContext();
37: // UserTransaction userTransaction = rootContext.getUserTransaction();
38: // if (userTransaction != null) {
39: // componentContext.put("UserTransaction", userTransaction);
40: // rootContext.setUserTransaction(null);
41: // }
42: }
43:
44: public QNameSet getSpecQNameSet() {
45: return QNameSet.EMPTY;
46: }
47:
48: public QNameSet getPlanQNameSet() {
49: return QNameSet.EMPTY;
50: }
51:
52: public static final GBeanInfo GBEAN_INFO;
53:
54: static {
55: GBeanInfoBuilder infoBuilder = GBeanInfoBuilder.createStatic(
56: UserTransactionRefBuilder.class,
57: NameFactory.MODULE_BUILDER);
58: GBEAN_INFO = infoBuilder.getBeanInfo();
59: }
60:
61: public static GBeanInfo getGBeanInfo() {
62: return GBEAN_INFO;
63: }
64:
65: }
|