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

org.ow2.petals.microkernel.api.container.InstallerFcItf Maven / Gradle / Ivy

There is a newer version: 4.3.0
Show newest version
/*
 * Generated by: org.objectweb.fractal.juliac.proxy.InterfaceImplementationClassGenerator
 * on: Wed Sep 21 08:11:47 GMT+01:00 2016
 */

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


public class InstallerFcItf
extends org.objectweb.fractal.julia.BasicComponentInterface
implements org.ow2.petals.microkernel.api.container.Installer {

  private org.ow2.petals.microkernel.api.container.Installer impl;
  public InstallerFcItf()  {
  }

  public InstallerFcItf(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.container.Installer)obj;
  }

  public void init(final org.ow2.petals.microkernel.api.jbi.management.Context arg0) throws java.io.IOException,javax.jbi.JBIException,javax.naming.NamingException  {
    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.init(arg0);
  }

  public org.ow2.petals.microkernel.api.container.ComponentLifeCycle installInternal() throws javax.jbi.JBIException  {
    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.microkernel.api.container.ComponentLifeCycle ret = impl.installInternal();
    return ret;
  }

  public javax.management.ObjectName getInstallerConfigurationMBean() throws javax.jbi.JBIException  {
    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.ObjectName ret = impl.getInstallerConfigurationMBean();
    return ret;
  }

  public org.ow2.petals.jbi.descriptor.original.generated.Jbi getJBIDescriptor()  {
    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.jbi.descriptor.original.generated.Jbi ret = impl.getJBIDescriptor();
    return ret;
  }

  public java.lang.String getInstallRoot()  {
    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.");
    }
    java.lang.String ret = impl.getInstallRoot();
    return ret;
  }

  public org.ow2.petals.microkernel.api.container.IsolatingThread getComponentThread()  {
    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.microkernel.api.container.IsolatingThread ret = impl.getComponentThread();
    return ret;
  }

  public void initBootstrap(final boolean arg0) throws javax.jbi.JBIException  {
    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.initBootstrap(arg0);
  }

  public javax.management.ObjectName install() throws javax.jbi.JBIException  {
    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.ObjectName ret = impl.install();
    return ret;
  }

  public java.lang.String getComponentName()  {
    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.");
    }
    java.lang.String ret = impl.getComponentName();
    return ret;
  }

  public org.ow2.petals.microkernel.api.jbi.component.PetalsComponentContext getComponentContext()  {
    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.microkernel.api.jbi.component.PetalsComponentContext ret = impl.getComponentContext();
    return ret;
  }

  public void uninstall() throws javax.jbi.JBIException  {
    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.uninstall();
  }

  public boolean isInstalled()  {
    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.");
    }
    boolean ret = impl.isInstalled();
    return ret;
  }

  public javax.jbi.component.Component getComponent()  {
    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.jbi.component.Component ret = impl.getComponent();
    return ret;
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy