IceGrid._QueryTie Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of icegrid-compat Show documentation
Show all versions of icegrid-compat Show documentation
Locate, deploy, and manage Ice servers
//
// Copyright (c) ZeroC, Inc. All rights reserved.
//
//
// Ice version 3.7.3
//
//
//
// Generated from file `Registry.ice'
//
// Warning: do not edit this file.
//
//
//
package IceGrid;
public class _QueryTie extends _QueryDisp implements Ice.TieBase
{
public _QueryTie()
{
}
public _QueryTie(_QueryOperations delegate)
{
_ice_delegate = delegate;
}
public java.lang.Object ice_delegate()
{
return _ice_delegate;
}
public void ice_delegate(java.lang.Object delegate)
{
_ice_delegate = (_QueryOperations)delegate;
}
public boolean equals(java.lang.Object rhs)
{
if(this == rhs)
{
return true;
}
if(!(rhs instanceof _QueryTie))
{
return false;
}
return _ice_delegate.equals(((_QueryTie)rhs)._ice_delegate);
}
public int hashCode()
{
return _ice_delegate.hashCode();
}
public Ice.ObjectPrx findObjectById(Ice.Identity id, Ice.Current current)
{
return _ice_delegate.findObjectById(id, current);
}
public Ice.ObjectPrx findObjectByType(String type, Ice.Current current)
{
return _ice_delegate.findObjectByType(type, current);
}
public Ice.ObjectPrx findObjectByTypeOnLeastLoadedNode(String type, LoadSample sample, Ice.Current current)
{
return _ice_delegate.findObjectByTypeOnLeastLoadedNode(type, sample, current);
}
public Ice.ObjectPrx[] findAllObjectsByType(String type, Ice.Current current)
{
return _ice_delegate.findAllObjectsByType(type, current);
}
public Ice.ObjectPrx[] findAllReplicas(Ice.ObjectPrx proxy, Ice.Current current)
{
return _ice_delegate.findAllReplicas(proxy, current);
}
private _QueryOperations _ice_delegate;
public static final long serialVersionUID = 1866018073678719776L;
}