Codota Logo
MBeanNames
Code IndexAdd Codota to your IDE (free)

How to use
MBeanNames
in
javax.jbi.management

Best Java code snippets using javax.jbi.management.MBeanNames (Showing top 9 results out of 315)

  • Add the Codota plugin to your IDE and get smart completions
private void myMethod () {
Point p =
  • Codota Iconnew Point(x, y)
  • Codota Iconnew Point()
  • Codota IconMouseEvent e;e.getPoint()
  • Smart code suggestions by Codota
}
origin: org.apache.servicemix/servicemix-common

protected ObjectName createExtensionMBeanName() throws Exception {
  return this.context.getMBeanNames().createCustomComponentMBeanName("Configuration");
}
origin: org.objectweb.petals.tools.rmi/petals-rmi-server

/**
 * the constructor.
 * @param c
 *        the component context
 * @param dl
 *        the rmi delivery channel
 * @throws RemoteException
 *         impossbile to realize a rmi access
 */
public RemoteComponentContextImpl(final ComponentContext c, final RemoteDeliveryChannel dl) throws RemoteException {
  super();
  this.componentContext = c;
  this.rmiDeliveryChannel = dl;
  this.mBn = new org.objectweb.petals.tools.rmi.common.serializable.
  MBeanNames(this.componentContext.getMBeanNames().getJmxDomainName());
}
origin: org.apache.servicemix/servicemix-jms

protected ObjectName createExtensionMBeanName() throws Exception {
  return this.context.getContext().getMBeanNames().createCustomComponentMBeanName("bootstrap");
}
origin: net.open-esb.core/manage

    mEnv.getMBeanNames().getJmxDomainName(), 
    System.getProperty("com.sun.jbi.instanceName"));
mMBeanNames = (com.sun.jbi.management.MBeanNames) mbnamesImpl;
origin: org.apache.servicemix/servicemix-common

protected ObjectName createExtensionMBeanName() throws Exception {
  return this.context.getContext().getMBeanNames().createCustomComponentMBeanName("bootstrap");
}
origin: net.open-esb.core/manage

    mEnv.getMBeanNames().getJmxDomainName(), 
    System.getProperty("com.sun.jbi.instanceName"));
mMBeanNames = (com.sun.jbi.management.MBeanNames) mbnamesImpl;
origin: org.apache.servicemix/servicemix-common

protected ObjectName createExtensionMBeanName() throws Exception {
  return this.context.getContext().getMBeanNames().createCustomComponentMBeanName("bootstrap");
}
origin: org.apache.ode/ode-jbi

private void registerMBean() throws JBIException {
  ProcessAndInstanceManagementMBean pmapi = new ProcessAndInstanceManagementMBean(_ode._server,_ode._store);
  MBeanServer server = _ode.getContext().getMBeanServer();
  try {
    if (server != null) {
      _mbeanName = _ode.getContext().getMBeanNames().createCustomComponentMBeanName("Management");
      if (server.isRegistered(_mbeanName)) {
        server.unregisterMBean(_mbeanName);
      }
      server.registerMBean(pmapi, _mbeanName);
    }
  } catch (Exception e) {
    throw new JBIException(e);
  }
}
origin: org.apache.servicemix/servicemix-http

protected void doInit() throws Exception {
  configuration = new HttpConfiguration();
  configuration.setRootDir(this.context.getInstallRoot());
  configuration.setComponentName(this.context.getComponentName());
  configuration.load();
  ObjectName name = this.context.getContext().getMBeanNames().createCustomComponentMBeanName("bootstrap");
  this.mbeanName = MBeanServerHelper.register(getMBeanServer(), name, configuration);
}
javax.jbi.managementMBeanNames

Javadoc

This interface provides methods to create JMX object names for component- supplied MBeans. This ensures that component-supplied MBeans follow the JBI implementation-determined naming convention.

Components obtain instances of this name creator using javax.jbi.component.ComponentContext#getMBeanNames().

Most used methods

  • createCustomComponentMBeanName
    Formulate and return an MBean ObjectName for a custom control of this name creator's JBI component.
  • getJmxDomainName
    Retrieve the default JMX Domain Name for MBeans registered in this instance of the JBI implementatio

Popular in Java

  • Reading from database using SQL prepared statement
  • getSupportFragmentManager (FragmentActivity)
  • setContentView (Activity)
  • runOnUiThread (Activity)
  • FileOutputStream (java.io)
    A file output stream is an output stream for writing data to aFile or to a FileDescriptor. Whether
  • ByteBuffer (java.nio)
    A buffer for bytes. A byte buffer can be created in either one of the following ways: * #allocate(i
  • LinkedHashMap (java.util)
    Hash table and linked list implementation of the Map interface, with predictable iteration order. Th
  • Locale (java.util)
    A Locale object represents a specific geographical, political, or cultural region. An operation that
  • TimeUnit (java.util.concurrent)
    A TimeUnit represents time durations at a given unit of granularity and provides utility methods to
  • JCheckBox (javax.swing)
Codota Logo
  • Products

    Search for Java codeSearch for JavaScript codeEnterprise
  • IDE Plugins

    IntelliJ IDEAWebStormAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogCodota Academy Plugin user guide Terms of usePrivacy policyJava Code IndexJavascript Code Index
Get Codota for your IDE now