package com.vci.corba.omd.lifecycleManager;
|
|
import org.omg.PortableServer.POA;
|
|
/**
|
* Generated from IDL interface "LifeCycleService".
|
*
|
* @author JacORB IDL compiler V 3.9
|
* @version generated at 2022-12-23 15:42:24
|
*/
|
|
public class LifeCycleServicePOATie
|
extends LifeCycleServicePOA
|
{
|
private LifeCycleServiceOperations _delegate;
|
|
private POA _poa;
|
public LifeCycleServicePOATie(LifeCycleServiceOperations delegate)
|
{
|
_delegate = delegate;
|
}
|
public LifeCycleServicePOATie(LifeCycleServiceOperations delegate, POA poa)
|
{
|
_delegate = delegate;
|
_poa = poa;
|
}
|
public com.vci.corba.omd.lifecycleManager.LifeCycleService _this()
|
{
|
org.omg.CORBA.Object __o = _this_object() ;
|
com.vci.corba.omd.lifecycleManager.LifeCycleService __r = com.vci.corba.omd.lifecycleManager.LifeCycleServiceHelper.narrow(__o);
|
return __r;
|
}
|
public com.vci.corba.omd.lifecycleManager.LifeCycleService _this(org.omg.CORBA.ORB orb)
|
{
|
org.omg.CORBA.Object __o = _this_object(orb) ;
|
com.vci.corba.omd.lifecycleManager.LifeCycleService __r = com.vci.corba.omd.lifecycleManager.LifeCycleServiceHelper.narrow(__o);
|
return __r;
|
}
|
public LifeCycleServiceOperations _delegate()
|
{
|
return _delegate;
|
}
|
public void _delegate(LifeCycleServiceOperations delegate)
|
{
|
_delegate = delegate;
|
}
|
public POA _default_POA()
|
{
|
if (_poa != null)
|
{
|
return _poa;
|
}
|
return super._default_POA();
|
}
|
public boolean deleteLifeCycles(com.vci.corba.omd.lifecycleManager.LifeCycle[] lcs) throws com.vci.corba.common.VCIError
|
{
|
return _delegate.deleteLifeCycles(lcs);
|
}
|
|
public boolean modifyLifeCycle(com.vci.corba.omd.lifecycleManager.LifeCycle lc) throws com.vci.corba.common.VCIError
|
{
|
return _delegate.modifyLifeCycle(lc);
|
}
|
|
public boolean recordTransitionHistory(com.vci.corba.omd.lifecycleManager.TransationHistoryRecord thr) throws com.vci.corba.common.VCIError
|
{
|
return _delegate.recordTransitionHistory(thr);
|
}
|
|
public java.lang.String getLifeCycleEventViewSavePath() throws com.vci.corba.common.VCIError
|
{
|
return _delegate.getLifeCycleEventViewSavePath();
|
}
|
|
public boolean deleteLifeCycle(com.vci.corba.omd.lifecycleManager.LifeCycle lc) throws com.vci.corba.common.VCIError
|
{
|
return _delegate.deleteLifeCycle(lc);
|
}
|
|
public boolean xml2DB(java.lang.String userName) throws com.vci.corba.common.VCIError
|
{
|
return _delegate.xml2DB(userName);
|
}
|
|
public java.lang.String getLCEventValueByKey(java.lang.String key) throws com.vci.corba.common.VCIError
|
{
|
return _delegate.getLCEventValueByKey(key);
|
}
|
|
public com.vci.corba.omd.lifecycleManager.LifeCycle getLifeCycle(java.lang.String name) throws com.vci.corba.common.VCIError
|
{
|
return _delegate.getLifeCycle(name);
|
}
|
|
public java.lang.String getLifeCycleEventPath() throws com.vci.corba.common.VCIError
|
{
|
return _delegate.getLifeCycleEventPath();
|
}
|
|
public com.vci.corba.omd.lifecycleManager.LifeCycle[] getLifeCycles() throws com.vci.corba.common.VCIError
|
{
|
return _delegate.getLifeCycles();
|
}
|
|
public java.lang.String getLifeCycleEventViewPath() throws com.vci.corba.common.VCIError
|
{
|
return _delegate.getLifeCycleEventViewPath();
|
}
|
|
public java.lang.String get_lifecycle_event_path() throws com.vci.corba.common.VCIError
|
{
|
return _delegate.get_lifecycle_event_path();
|
}
|
|
public boolean addLifeCycle(com.vci.corba.omd.lifecycleManager.LifeCycle lc) throws com.vci.corba.common.VCIError
|
{
|
return _delegate.addLifeCycle(lc);
|
}
|
|
public java.lang.String[] getLCEventKeys() throws com.vci.corba.common.VCIError
|
{
|
return _delegate.getLCEventKeys();
|
}
|
|
}
|