Glacier2._IdentitySetTie Maven / Gradle / Ivy
//
// Copyright (c) ZeroC, Inc. All rights reserved.
//
//
// Ice version 3.7.3
//
//
//
// Generated from file `Session.ice'
//
// Warning: do not edit this file.
//
//
//
package Glacier2;
public class _IdentitySetTie extends _IdentitySetDisp implements Ice.TieBase
{
public _IdentitySetTie()
{
}
public _IdentitySetTie(_IdentitySetOperations delegate)
{
_ice_delegate = delegate;
}
public java.lang.Object ice_delegate()
{
return _ice_delegate;
}
public void ice_delegate(java.lang.Object delegate)
{
_ice_delegate = (_IdentitySetOperations)delegate;
}
public boolean equals(java.lang.Object rhs)
{
if(this == rhs)
{
return true;
}
if(!(rhs instanceof _IdentitySetTie))
{
return false;
}
return _ice_delegate.equals(((_IdentitySetTie)rhs)._ice_delegate);
}
public int hashCode()
{
return _ice_delegate.hashCode();
}
public void add(Ice.Identity[] additions, Ice.Current current)
{
_ice_delegate.add(additions, current);
}
public void remove(Ice.Identity[] deletions, Ice.Current current)
{
_ice_delegate.remove(deletions, current);
}
public Ice.Identity[] get(Ice.Current current)
{
return _ice_delegate.get(current);
}
private _IdentitySetOperations _ice_delegate;
public static final long serialVersionUID = -7702923011336578868L;
}