jmxmbeanhandle.java
来自「java开源的企业总线.xmlBlaster」· Java 代码 · 共 68 行
JAVA
68 行
/*------------------------------------------------------------------------------Name: JmxMBeanHandle.javaProject: xmlBlaster.orgCopyright: xmlBlaster.org, see xmlBlaster-LICENSE file------------------------------------------------------------------------------*/package org.xmlBlaster.util.admin.extern;import javax.management.ObjectInstance;import org.xmlBlaster.util.context.ContextNode;/** * Container to hold the ObjectInstance,mBean and ContextNode triple. * @author Marcel Ruff */public class JmxMBeanHandle { private ObjectInstance objectInstance; private ContextNode contextNode; private Object mBean; public JmxMBeanHandle(ObjectInstance objectInstance, ContextNode contextNode, Object mBean) { this.objectInstance = objectInstance; this.contextNode = contextNode; this.mBean = mBean; } /** * @return Returns the ObjectInstance. */ public ObjectInstance getObjectInstance() { return this.objectInstance; } /** * @param objectInstance The ObjectInstance to set. */ public void setObjectInstance(ObjectInstance objectInstance) { this.objectInstance = objectInstance; } /** * @return Returns the contextNode. */ public ContextNode getContextNode() { return this.contextNode; } /** * @param contextNode The contextNode to set. */ public void setContextNode(ContextNode contextNode) { this.contextNode = contextNode; } /** * @return Returns the mBean. */ public Object getMBean() { return this.mBean; } /** * @param mBean The mBean to set. */ public void setMBean(Object mBean) { this.mBean = mBean; }}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?