package com.vci.corba.refquery;
|
|
import org.omg.PortableServer.POA;
|
|
/**
|
* Generated from IDL interface "RefQueryService".
|
*
|
* @author JacORB IDL compiler V 3.9
|
* @version generated at 2022-12-23 15:42:24
|
*/
|
|
public class RefQueryServicePOATie
|
extends RefQueryServicePOA
|
{
|
private RefQueryServiceOperations _delegate;
|
|
private POA _poa;
|
public RefQueryServicePOATie(RefQueryServiceOperations delegate)
|
{
|
_delegate = delegate;
|
}
|
public RefQueryServicePOATie(RefQueryServiceOperations delegate, POA poa)
|
{
|
_delegate = delegate;
|
_poa = poa;
|
}
|
public com.vci.corba.refquery.RefQueryService _this()
|
{
|
org.omg.CORBA.Object __o = _this_object() ;
|
com.vci.corba.refquery.RefQueryService __r = com.vci.corba.refquery.RefQueryServiceHelper.narrow(__o);
|
return __r;
|
}
|
public com.vci.corba.refquery.RefQueryService _this(org.omg.CORBA.ORB orb)
|
{
|
org.omg.CORBA.Object __o = _this_object(orb) ;
|
com.vci.corba.refquery.RefQueryService __r = com.vci.corba.refquery.RefQueryServiceHelper.narrow(__o);
|
return __r;
|
}
|
public RefQueryServiceOperations _delegate()
|
{
|
return _delegate;
|
}
|
public void _delegate(RefQueryServiceOperations delegate)
|
{
|
_delegate = delegate;
|
}
|
public POA _default_POA()
|
{
|
if (_poa != null)
|
{
|
return _poa;
|
}
|
return super._default_POA();
|
}
|
public com.vci.corba.refquery.RefPath[] getRefQueryResults(com.vci.corba.refquery.RefPath[] paths) throws com.vci.corba.common.VCIError
|
{
|
return _delegate.getRefQueryResults(paths);
|
}
|
|
public com.vci.corba.refquery.RefPath[] getRefTypesResults(com.vci.corba.refquery.RefPath[] paths, java.lang.String[] types) throws com.vci.corba.common.VCIError
|
{
|
return _delegate.getRefTypesResults(paths,types);
|
}
|
|
public com.vci.corba.refquery.RefPath[] getRefResults(com.vci.corba.refquery.RefPath[] paths, java.lang.String toType) throws com.vci.corba.common.VCIError
|
{
|
return _delegate.getRefResults(paths,toType);
|
}
|
|
}
|