IceStorm._TopicManagerTie Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of icestorm-compat Show documentation
Show all versions of icestorm-compat Show documentation
Publish-subscribe event distribution service
// **********************************************************************
//
// Copyright (c) 2003-2018 ZeroC, Inc. All rights reserved.
//
// This copy of Ice is licensed to you under the terms described in the
// ICE_LICENSE file included in this distribution.
//
// **********************************************************************
//
// Ice version 3.7.1
//
//
//
// Generated from file `IceStorm.ice'
//
// Warning: do not edit this file.
//
//
//
package IceStorm;
public class _TopicManagerTie extends _TopicManagerDisp implements Ice.TieBase
{
public _TopicManagerTie()
{
}
public _TopicManagerTie(_TopicManagerOperations delegate)
{
_ice_delegate = delegate;
}
public java.lang.Object ice_delegate()
{
return _ice_delegate;
}
public void ice_delegate(java.lang.Object delegate)
{
_ice_delegate = (_TopicManagerOperations)delegate;
}
public boolean equals(java.lang.Object rhs)
{
if(this == rhs)
{
return true;
}
if(!(rhs instanceof _TopicManagerTie))
{
return false;
}
return _ice_delegate.equals(((_TopicManagerTie)rhs)._ice_delegate);
}
public int hashCode()
{
return _ice_delegate.hashCode();
}
public TopicPrx create(String name, Ice.Current current)
throws TopicExists
{
return _ice_delegate.create(name, current);
}
public java.util.Map getSliceChecksums(Ice.Current current)
{
return _ice_delegate.getSliceChecksums(current);
}
public TopicPrx retrieve(String name, Ice.Current current)
throws NoSuchTopic
{
return _ice_delegate.retrieve(name, current);
}
public java.util.Map retrieveAll(Ice.Current current)
{
return _ice_delegate.retrieveAll(current);
}
private _TopicManagerOperations _ice_delegate;
public static final long serialVersionUID = -4805734422330240329L;
}