All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.ow2.petals.microkernel.api.communication.JMXServiceFcItf Maven / Gradle / Ivy

There is a newer version: 1.2.0
Show newest version
/*
 * Generated by: org.objectweb.fractal.juliac.proxy.InterfaceImplementationClassGenerator
 * on: Wed May 18 10:19:23 CEST 2016
 */

package org.ow2.petals.microkernel.api.communication;


public class JMXServiceFcItf
extends org.objectweb.fractal.julia.BasicComponentInterface
implements org.ow2.petals.microkernel.api.communication.JMXService {

  private org.ow2.petals.microkernel.api.communication.JMXService impl;
  public JMXServiceFcItf()  {
  }

  public JMXServiceFcItf(org.objectweb.fractal.api.Component component,String s,org.objectweb.fractal.api.Type type,boolean flag,Object obj)  {
    super(component,s,type,flag,obj);
  }

  public Object getFcItfImpl()  {
    return impl;
  }

  public void setFcItfImpl(Object obj)  {
    impl = (org.ow2.petals.microkernel.api.communication.JMXService)obj;
  }

  public void returnJMXClient(final java.lang.String arg0,final org.ow2.petals.jmx.api.api.JMXClient arg1) throws org.ow2.petals.basisapi.exception.PetalsException  {
    if ( impl == null )
    {
      throw new java.lang.NullPointerException("Trying to invoke a method on a client or server interface whose complementary interface is not bound.");
    }
    impl.returnJMXClient(arg0,arg1);
  }

  public javax.management.MBeanServer getLocalJMXServer()  {
    if ( impl == null )
    {
      throw new java.lang.NullPointerException("Trying to invoke a method on a client or server interface whose complementary interface is not bound.");
    }
    javax.management.MBeanServer ret = impl.getLocalJMXServer();
    return ret;
  }

  public org.ow2.petals.jmx.api.api.JMXClient getJMXClient(final java.lang.String arg0) throws org.ow2.petals.basisapi.exception.PetalsException  {
    if ( impl == null )
    {
      throw new java.lang.NullPointerException("Trying to invoke a method on a client or server interface whose complementary interface is not bound.");
    }
    org.ow2.petals.jmx.api.api.JMXClient ret = impl.getJMXClient(arg0);
    return ret;
  }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy