01: /**
02: * EasyBeans
03: * Copyright (C) 2006 Bull S.A.S.
04: * Contact: easybeans@ow2.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: MDBMessageEndPointFactoryIdentifier.java 1970 2007-10-16 11:49:25Z benoitf $
23: * --------------------------------------------------------------------------
24: */package org.ow2.easybeans.container.mdb.management;
25:
26: import org.ow2.easybeans.api.EZBContainer;
27: import org.ow2.easybeans.container.mdb.MDBMessageEndPointFactory;
28: import org.ow2.easybeans.jmx.MBeansException;
29: import org.ow2.easybeans.jmx.MBeansHelper;
30: import org.ow2.easybeans.jsr77.JSR77ManagementIdentifier;
31:
32: /**
33: * Generates an ObjectName for an MDB message endpoint factory MBean.
34: * @author Florent Benoit
35: */
36: public class MDBMessageEndPointFactoryIdentifier extends
37: JSR77ManagementIdentifier<MDBMessageEndPointFactory> {
38:
39: /**
40: * JMX MBean Type.
41: */
42: private static final String TYPE = "MessageDrivenBean";
43:
44: /**
45: * {@inheritDoc}
46: */
47: public String getTypeValue() {
48: return TYPE;
49: }
50:
51: /**
52: * {@inheritDoc}
53: */
54: public String getAdditionnalProperties(
55: final MDBMessageEndPointFactory instance) {
56: StringBuilder sb = new StringBuilder();
57: // EJBModule=?
58: EZBContainer container = instance.getContainer();
59: String parent = null;
60: try {
61: parent = MBeansHelper.getInstance()
62: .getObjectName(container);
63: sb.append(getParentNameProperty(parent));
64: sb.append(",");
65: sb.append(getPropertyNameValue(parent, "J2EEServer"));
66: sb.append(",");
67: sb.append(getPropertyNameValue(parent, "J2EEApplication"));
68: } catch (MBeansException e) {
69: getLogger()
70: .warn(
71: "Cannot retrieve parent ObjectName for ''{0}''",
72: sb);
73: }
74: return sb.toString();
75: }
76:
77: /**
78: * {@inheritDoc}
79: */
80: public String getNamePropertyValue(
81: final MDBMessageEndPointFactory instance) {
82: return instance.getClassName();
83: }
84:
85: }
|