/** * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at *
* http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.apache.openejb.mgmt; import javax.ejb.*; import javax.management.*; import javax.management.j2ee.ListenerRegistration; import javax.management.j2ee.ManagementHome; import java.util.List; import java.util.Set; @Stateless(name = "ejb/mgmt/MEJB") @RemoteHome(ManagementHome.class) public class MEJBBean { MBeanServer mbeanServer; public MEJBBean() { List mbeanServers = MBeanServerFactory.findMBeanServer(null); if (mbeanServers.size() > 0) { mbeanServer = (MBeanServer) mbeanServers.get(0); } else { mbeanServer = MBeanServerFactory.createMBeanServer(); } } @Init public void create() { } public Object getAttribute(ObjectName objectName, String string) throws MBeanException, AttributeNotFoundException, InstanceNotFoundException, ReflectionException { return mbeanServer.getAttribute(objectName, string); } public AttributeList getAttributes(ObjectName objectName, String[] strings) throws InstanceNotFoundException, ReflectionException { return mbeanServer.getAttributes(objectName, strings); } public String getDefaultDomain() { return mbeanServer.getDefaultDomain(); } public Integer getMBeanCount() { return mbeanServer.getMBeanCount(); } public MBeanInfo getMBeanInfo(ObjectName objectName) throws IntrospectionException, InstanceNotFoundException, ReflectionException { return mbeanServer.getMBeanInfo(objectName); } public Object invoke(ObjectName objectName, String string, Object[] objects, String[] strings) throws InstanceNotFoundException, MBeanException, ReflectionException { return mbeanServer.invoke(objectName, string, objects, strings); } public boolean isRegistered(ObjectName objectName) { return mbeanServer.isRegistered(objectName); } public Set queryNames(ObjectName objectName, QueryExp queryExp) { return mbeanServer.queryNames(objectName, queryExp); } public void setAttribute(ObjectName objectName, Attribute attribute) throws InstanceNotFoundException, AttributeNotFoundException, InvalidAttributeValueException, MBeanException, ReflectionException { mbeanServer.setAttribute(objectName, attribute); } public AttributeList setAttributes(ObjectName objectName, AttributeList attributeList) throws InstanceNotFoundException, ReflectionException { return mbeanServer.setAttributes(objectName, attributeList); } public ListenerRegistration getListenerRegistry() { return null; } }