Glacier2.SessionControlHolder Maven / Gradle / Ivy
//
// Copyright (c) ZeroC, Inc. All rights reserved.
//
//
// Ice version 3.7.7
//
//
//
// Generated from file `Session.ice'
//
// Warning: do not edit this file.
//
//
//
package Glacier2;
public final class SessionControlHolder extends Ice.ObjectHolderBase
{
public
SessionControlHolder()
{
}
public
SessionControlHolder(SessionControl value)
{
this.value = value;
}
public void
valueReady(Ice.Object v)
{
if(v == null || v instanceof SessionControl)
{
value = (SessionControl)v;
}
else
{
IceInternal.Ex.throwUOE(type(), v);
}
}
public String
type()
{
return _SessionControlDisp.ice_staticId();
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy