org.ow2.petals.microkernel.server.PetalsCompositeControllerFcItf Maven / Gradle / Ivy
/*
* Generated by: org.objectweb.fractal.juliac.proxy.InterfaceImplementationClassGenerator
* on: Wed Sep 21 08:11:46 GMT+01:00 2016
*/
package org.ow2.petals.microkernel.server;
public class PetalsCompositeControllerFcItf
extends org.objectweb.fractal.julia.BasicComponentInterface
implements org.ow2.petals.microkernel.server.PetalsCompositeController {
private org.ow2.petals.microkernel.server.PetalsCompositeController impl;
public PetalsCompositeControllerFcItf() {
}
public PetalsCompositeControllerFcItf(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.server.PetalsCompositeController)obj;
}
public java.util.Properties getSharedAreaCltConfiguration(final java.lang.String arg0) throws org.ow2.petals.microkernel.server.exception.PetalsCompositeCtrlException {
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.util.Properties ret = impl.getSharedAreaCltConfiguration(arg0);
return ret;
}
public java.lang.AutoCloseable pauseEndpointDirectory() throws org.ow2.petals.microkernel.server.exception.PetalsCompositeCtrlException {
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.AutoCloseable ret = impl.pauseEndpointDirectory();
return ret;
}
public void stopJbiArtefacts() throws org.ow2.petals.microkernel.server.exception.PetalsCompositeCtrlException {
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.stopJbiArtefacts();
}
public void replaceSharedArea(final java.lang.Class> arg0) throws org.ow2.petals.microkernel.server.exception.PetalsCompositeCtrlException {
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.replaceSharedArea(arg0);
}
public java.lang.AutoCloseable pauseMessagingSubsystem() throws org.ow2.petals.microkernel.server.exception.PetalsCompositeCtrlException {
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.AutoCloseable ret = impl.pauseMessagingSubsystem();
return ret;
}
public java.lang.AutoCloseable pauseSharedArea() throws org.ow2.petals.microkernel.server.exception.PetalsCompositeCtrlException {
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.AutoCloseable ret = impl.pauseSharedArea();
return ret;
}
public void onConfigurationUpdated() throws org.ow2.petals.microkernel.server.exception.PetalsCompositeCtrlException {
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.onConfigurationUpdated();
}
public void stopSystemRecoveryService() throws org.ow2.petals.microkernel.server.exception.PetalsCompositeCtrlException {
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.stopSystemRecoveryService();
}
public void startSystemRecoveryService() throws org.ow2.petals.microkernel.server.exception.PetalsCompositeCtrlException {
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.startSystemRecoveryService();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy