/* * JBoss, Home of Professional Open Source. * Copyright 2011, Red Hat Middleware LLC, and individual contributors * as indicated by the @author tags. See the copyright.txt file in the * distribution for a full listing of individual contributors. * * This is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as * published by the Free Software Foundation; either version 2.1 of * the License, or (at your option) any later version. * * This software is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this software; if not, write to the Free * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA * 02110-1301 USA, or see the FSF site: http://www.fsf.org. */ package org.jboss.as.jsr77.subsystem; import java.io.ObjectInputStream; import java.util.Collections; import java.util.Set; import javax.management.Attribute; import javax.management.AttributeList; import javax.management.AttributeNotFoundException; import javax.management.InstanceAlreadyExistsException; import javax.management.InstanceNotFoundException; import javax.management.IntrospectionException; import javax.management.InvalidAttributeValueException; import javax.management.ListenerNotFoundException; import javax.management.MBeanException; import javax.management.MBeanInfo; import javax.management.MBeanRegistrationException; import javax.management.NotCompliantMBeanException; import javax.management.NotificationFilter; import javax.management.NotificationListener; import javax.management.ObjectInstance; import javax.management.ObjectName; import javax.management.OperationsException; import javax.management.QueryExp; import javax.management.ReflectionException; import javax.management.loading.ClassLoaderRepository; import org.jboss.as.controller.ModelController; import org.jboss.as.jsr77.logging.JSR77Logger; import org.jboss.as.jsr77.managedobject.ManagedObjectHandlerRegistry; import org.jboss.as.server.jmx.MBeanServerPlugin; /** * * @author <a href="kabir.khan@jboss.com">Kabir Khan</a> */ class JSR77ManagementMBeanServer implements MBeanServerPlugin { final ModelController controller; public JSR77ManagementMBeanServer(ModelController controller) { this.controller = controller; } @Override public boolean accepts(ObjectName objectName) { return ManagedObjectHandlerRegistry.INSTANCE.isMyDomain(objectName); } @Override public boolean shouldAuditLog() { return true; } @Override public boolean shouldAuthorize() { return true; } @Override public void addNotificationListener(ObjectName name, NotificationListener listener, NotificationFilter filter, Object handback) throws InstanceNotFoundException { } @Override public void addNotificationListener(ObjectName name, ObjectName listener, NotificationFilter filter, Object handback) throws InstanceNotFoundException { } @Override public ObjectInstance createMBean(String className, ObjectName name) throws ReflectionException, InstanceAlreadyExistsException, MBeanException, NotCompliantMBeanException { return null; } @Override public ObjectInstance createMBean(String className, ObjectName name, ObjectName loaderName) throws ReflectionException, InstanceAlreadyExistsException, MBeanException, NotCompliantMBeanException, InstanceNotFoundException { return null; } @Override public ObjectInstance createMBean(String className, ObjectName name, Object[] params, String[] signature) throws ReflectionException, InstanceAlreadyExistsException, MBeanException, NotCompliantMBeanException { return null; } @Override public ObjectInstance createMBean(String className, ObjectName name, ObjectName loaderName, Object[] params, String[] signature) throws ReflectionException, InstanceAlreadyExistsException, MBeanException, NotCompliantMBeanException, InstanceNotFoundException { return null; } @Override @Deprecated public ObjectInputStream deserialize(ObjectName name, byte[] data) throws OperationsException { return null; } @Override @Deprecated public ObjectInputStream deserialize(String className, byte[] data) throws OperationsException, ReflectionException { return null; } @Override @Deprecated public ObjectInputStream deserialize(String className, ObjectName loaderName, byte[] data) throws OperationsException, ReflectionException { return null; } @Override public Object getAttribute(ObjectName name, String attribute) throws MBeanException, AttributeNotFoundException, InstanceNotFoundException, ReflectionException { return ManagedObjectHandlerRegistry.INSTANCE.getAttribute(controller, name, attribute); } @Override public AttributeList getAttributes(ObjectName name, String[] attributes) throws InstanceNotFoundException, ReflectionException { AttributeList list = new AttributeList(); for (String attr : attributes) { try { list.add(new Attribute(attr, getAttribute(name, attr))); } catch (Exception e) { } } return null; } @Override public ClassLoader getClassLoader(ObjectName loaderName) throws InstanceNotFoundException { return null; } @Override public ClassLoader getClassLoaderFor(ObjectName mbeanName) throws InstanceNotFoundException { return null; } @Override public ClassLoaderRepository getClassLoaderRepository() { return null; } @Override public String getDefaultDomain() { return null; } @Override public String[] getDomains() { return new String[] {Constants.JMX_DOMAIN}; } @Override public Integer getMBeanCount() { return ManagedObjectHandlerRegistry.INSTANCE.getMBeanCount(controller); } @Override public MBeanInfo getMBeanInfo(ObjectName name) throws InstanceNotFoundException, IntrospectionException, ReflectionException { return ManagedObjectHandlerRegistry.INSTANCE.getMBeanInfo(controller, name); } @Override public ObjectInstance getObjectInstance(ObjectName name) throws InstanceNotFoundException { return null; } @Override public Object instantiate(String className) throws ReflectionException, MBeanException { return null; } @Override public Object instantiate(String className, ObjectName loaderName) throws ReflectionException, MBeanException, InstanceNotFoundException { return null; } @Override public Object instantiate(String className, Object[] params, String[] signature) throws ReflectionException, MBeanException { return null; } @Override public Object instantiate(String className, ObjectName loaderName, Object[] params, String[] signature) throws ReflectionException, MBeanException, InstanceNotFoundException { return null; } @Override public Object invoke(ObjectName name, String operationName, Object[] params, String[] signature) throws InstanceNotFoundException, MBeanException, ReflectionException { return null; } @Override public boolean isInstanceOf(ObjectName name, String className) throws InstanceNotFoundException { return false; } @Override public boolean isRegistered(ObjectName name) { return ManagedObjectHandlerRegistry.INSTANCE.isRegistered(controller, name); } @Override public Set<ObjectInstance> queryMBeans(ObjectName name, QueryExp query) { return Collections.emptySet(); } @Override public Set<ObjectName> queryNames(ObjectName name, QueryExp query) { return ManagedObjectHandlerRegistry.INSTANCE.queryNames(controller, name, query); } @Override public ObjectInstance registerMBean(Object object, ObjectName name) throws InstanceAlreadyExistsException, MBeanRegistrationException, NotCompliantMBeanException { return null; } @Override public void removeNotificationListener(ObjectName name, ObjectName listener) throws InstanceNotFoundException, ListenerNotFoundException { } @Override public void removeNotificationListener(ObjectName name, NotificationListener listener) throws InstanceNotFoundException, ListenerNotFoundException { } @Override public void removeNotificationListener(ObjectName name, ObjectName listener, NotificationFilter filter, Object handback) throws InstanceNotFoundException, ListenerNotFoundException { } @Override public void removeNotificationListener(ObjectName name, NotificationListener listener, NotificationFilter filter, Object handback) throws InstanceNotFoundException, ListenerNotFoundException { } @Override public void setAttribute(ObjectName name, Attribute attribute) throws InstanceNotFoundException, AttributeNotFoundException, InvalidAttributeValueException, MBeanException, ReflectionException { throw JSR77Logger.ROOT_LOGGER.mbeanIsReadOnly(name); } @Override public AttributeList setAttributes(ObjectName name, AttributeList attributes) throws InstanceNotFoundException, ReflectionException { throw JSR77Logger.ROOT_LOGGER.mbeanIsReadOnly(name); } @Override public void unregisterMBean(ObjectName name) throws InstanceNotFoundException, MBeanRegistrationException { } }