org.jboss.mx.server.MBeanInvoker Maven / Gradle / Ivy
/*
* JBoss, Home of Professional Open Source
* Copyright 2005, JBoss Inc., and individual contributors as indicated
* by the @authors tag. See the copyright.txt 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.mx.server;
import javax.management.Descriptor;
import javax.management.DynamicMBean;
import javax.management.MBeanException;
import javax.management.MBeanInfo;
import javax.management.MBeanRegistration;
import javax.management.NotificationEmitter;
import javax.management.ObjectName;
/**
* This interface represents an invoker for an MBean. An invoker is registered
* to the MBean server to represent a user MBean. The invoker itself implements
* a DynamicMBean interface and therefore receives all attribute
* accessor and operation invocations targeted at the user MBean.
*
* Invoker implementations may handle the incoming invocations in different
* ways. The default implementation in AbstractMBeanInvoker constructs
* an Invocation object for each invocation and dispatches it through
* a set of Interceptor instances before the invocation is dispatched
* on the user MBean.
*
* @author Juha Lindfors.
* @author Dimitris Andreadis.
* @version $Revision: 37459 $
*/
public interface MBeanInvoker
extends DynamicMBean, MBeanRegistration, NotificationEmitter,
Suspendable, Interceptable
{
MBeanInfo getMetaData();
Object getResource();
void setResource(Object resource);
ObjectName getObjectName();
void updateAttributeInfo(Descriptor attrDesc) throws MBeanException;
}