package com.vci.corba.omd.versionRuleManager;
|
|
import org.omg.PortableServer.POA;
|
|
/**
|
* Generated from IDL interface "VersionRuleService".
|
*
|
* @author JacORB IDL compiler V 3.9
|
* @version generated at 2022-12-23 15:42:24
|
*/
|
|
public class VersionRuleServicePOATie
|
extends VersionRuleServicePOA
|
{
|
private VersionRuleServiceOperations _delegate;
|
|
private POA _poa;
|
public VersionRuleServicePOATie(VersionRuleServiceOperations delegate)
|
{
|
_delegate = delegate;
|
}
|
public VersionRuleServicePOATie(VersionRuleServiceOperations delegate, POA poa)
|
{
|
_delegate = delegate;
|
_poa = poa;
|
}
|
public com.vci.corba.omd.versionRuleManager.VersionRuleService _this()
|
{
|
org.omg.CORBA.Object __o = _this_object() ;
|
com.vci.corba.omd.versionRuleManager.VersionRuleService __r = com.vci.corba.omd.versionRuleManager.VersionRuleServiceHelper.narrow(__o);
|
return __r;
|
}
|
public com.vci.corba.omd.versionRuleManager.VersionRuleService _this(org.omg.CORBA.ORB orb)
|
{
|
org.omg.CORBA.Object __o = _this_object(orb) ;
|
com.vci.corba.omd.versionRuleManager.VersionRuleService __r = com.vci.corba.omd.versionRuleManager.VersionRuleServiceHelper.narrow(__o);
|
return __r;
|
}
|
public VersionRuleServiceOperations _delegate()
|
{
|
return _delegate;
|
}
|
public void _delegate(VersionRuleServiceOperations delegate)
|
{
|
_delegate = delegate;
|
}
|
public POA _default_POA()
|
{
|
if (_poa != null)
|
{
|
return _poa;
|
}
|
return super._default_POA();
|
}
|
public com.vci.corba.omd.versionRuleManager.VersionRule getVersionRule(java.lang.String name) throws com.vci.corba.common.VCIError
|
{
|
return _delegate.getVersionRule(name);
|
}
|
|
public boolean deleteVersionRule(com.vci.corba.omd.versionRuleManager.VersionRule vr) throws com.vci.corba.common.VCIError
|
{
|
return _delegate.deleteVersionRule(vr);
|
}
|
|
public boolean addVersionRule(com.vci.corba.omd.versionRuleManager.VersionRule vr) throws com.vci.corba.common.VCIError
|
{
|
return _delegate.addVersionRule(vr);
|
}
|
|
public boolean xml2DB(java.lang.String userName) throws com.vci.corba.common.VCIError
|
{
|
return _delegate.xml2DB(userName);
|
}
|
|
public com.vci.corba.omd.versionRuleManager.VersionRule[] getVersionRules() throws com.vci.corba.common.VCIError
|
{
|
return _delegate.getVersionRules();
|
}
|
|
public boolean modifyVersionRule(com.vci.corba.omd.versionRuleManager.VersionRule vr) throws com.vci.corba.common.VCIError
|
{
|
return _delegate.modifyVersionRule(vr);
|
}
|
|
public boolean deleteVersionRules(com.vci.corba.omd.versionRuleManager.VersionRule[] vrs) throws com.vci.corba.common.VCIError
|
{
|
return _delegate.deleteVersionRules(vrs);
|
}
|
|
}
|