All Downloads are FREE. Search and download functionalities are using the official Maven repository.

IceGrid._ApplicationObserverTie Maven / Gradle / Ivy

There is a newer version: 3.7.10
Show newest version
//
// Copyright (c) ZeroC, Inc. All rights reserved.
//
//
// Ice version 3.7.3
//
// 
//
// Generated from file `Admin.ice'
//
// Warning: do not edit this file.
//
// 
//

package IceGrid;

public class _ApplicationObserverTie extends _ApplicationObserverDisp implements Ice.TieBase
{
    public _ApplicationObserverTie()
    {
    }

    public _ApplicationObserverTie(_ApplicationObserverOperations delegate)
    {
        _ice_delegate = delegate;
    }

    public java.lang.Object ice_delegate()
    {
        return _ice_delegate;
    }

    public void ice_delegate(java.lang.Object delegate)
    {
        _ice_delegate = (_ApplicationObserverOperations)delegate;
    }

    public boolean equals(java.lang.Object rhs)
    {
        if(this == rhs)
        {
            return true;
        }
        if(!(rhs instanceof _ApplicationObserverTie))
        {
            return false;
        }

        return _ice_delegate.equals(((_ApplicationObserverTie)rhs)._ice_delegate);
    }

    public int hashCode()
    {
        return _ice_delegate.hashCode();
    }

    public void applicationInit(int serial, java.util.List applications, Ice.Current current)
    {
        _ice_delegate.applicationInit(serial, applications, current);
    }

    public void applicationAdded(int serial, ApplicationInfo desc, Ice.Current current)
    {
        _ice_delegate.applicationAdded(serial, desc, current);
    }

    public void applicationRemoved(int serial, String name, Ice.Current current)
    {
        _ice_delegate.applicationRemoved(serial, name, current);
    }

    public void applicationUpdated(int serial, ApplicationUpdateInfo desc, Ice.Current current)
    {
        _ice_delegate.applicationUpdated(serial, desc, current);
    }

    private _ApplicationObserverOperations _ice_delegate;

    public static final long serialVersionUID = -8486889594075409960L;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy