Glacier2._RouterTie Maven / Gradle / Ivy
//
// Copyright (c) ZeroC, Inc. All rights reserved.
//
//
// Ice version 3.7.3
//
//
//
// Generated from file `Router.ice'
//
// Warning: do not edit this file.
//
//
//
package Glacier2;
public class _RouterTie extends _RouterDisp implements Ice.TieBase
{
public _RouterTie()
{
}
public _RouterTie(_RouterOperations delegate)
{
_ice_delegate = delegate;
}
public java.lang.Object ice_delegate()
{
return _ice_delegate;
}
public void ice_delegate(java.lang.Object delegate)
{
_ice_delegate = (_RouterOperations)delegate;
}
public boolean equals(java.lang.Object rhs)
{
if(this == rhs)
{
return true;
}
if(!(rhs instanceof _RouterTie))
{
return false;
}
return _ice_delegate.equals(((_RouterTie)rhs)._ice_delegate);
}
public int hashCode()
{
return _ice_delegate.hashCode();
}
public Ice.ObjectPrx getClientProxy(Ice.BooleanHolder hasRoutingTable, Ice.Current current)
{
return _ice_delegate.getClientProxy(hasRoutingTable, current);
}
public Ice.ObjectPrx getServerProxy(Ice.Current current)
{
return _ice_delegate.getServerProxy(current);
}
public Ice.ObjectPrx[] addProxies(Ice.ObjectPrx[] proxies, Ice.Current current)
{
return _ice_delegate.addProxies(proxies, current);
}
public String getCategoryForClient(Ice.Current current)
{
return _ice_delegate.getCategoryForClient(current);
}
public void createSession_async(AMD_Router_createSession cb, String userId, String password, Ice.Current current)
throws CannotCreateSessionException,
PermissionDeniedException
{
_ice_delegate.createSession_async(cb, userId, password, current);
}
public void createSessionFromSecureConnection_async(AMD_Router_createSessionFromSecureConnection cb, Ice.Current current)
throws CannotCreateSessionException,
PermissionDeniedException
{
_ice_delegate.createSessionFromSecureConnection_async(cb, current);
}
public void refreshSession_async(AMD_Router_refreshSession cb, Ice.Current current)
throws SessionNotExistException
{
_ice_delegate.refreshSession_async(cb, current);
}
public void destroySession(Ice.Current current)
throws SessionNotExistException
{
_ice_delegate.destroySession(current);
}
public long getSessionTimeout(Ice.Current current)
{
return _ice_delegate.getSessionTimeout(current);
}
public int getACMTimeout(Ice.Current current)
{
return _ice_delegate.getACMTimeout(current);
}
private _RouterOperations _ice_delegate;
public static final long serialVersionUID = 7032440228761416823L;
}