com.addc.server.monitoring.MonitoredHolder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of addc-svr-monitor Show documentation
Show all versions of addc-svr-monitor Show documentation
Supplies the classes required for monitoring a server with the Amentet Monitoring Service
package com.addc.server.monitoring;
/**
* Generated from IDL interface "Monitored".
*
* @author JacORB IDL compiler V 3.9
* @version generated at Mar 25, 2019 1:59:31 PM
*/
public final class MonitoredHolder implements org.omg.CORBA.portable.Streamable{
public Monitored value;
public MonitoredHolder()
{
}
public MonitoredHolder (final Monitored initial)
{
value = initial;
}
public org.omg.CORBA.TypeCode _type()
{
return MonitoredHelper.type();
}
public void _read (final org.omg.CORBA.portable.InputStream in)
{
value = MonitoredHelper.read (in);
}
public void _write (final org.omg.CORBA.portable.OutputStream _out)
{
MonitoredHelper.write (_out,value);
}
}