org.omg.PortableServer.ImplicitActivationPolicyValueHolder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of openjdk-orb Show documentation
Show all versions of openjdk-orb Show documentation
JBoss repackaging of the OpenJDK ORB
package org.omg.PortableServer;
/**
* org/omg/PortableServer/ImplicitActivationPolicyValueHolder.java .
* Generated by the IDL-to-Java compiler (portable), version "3.2"
* from /home/tomek/workspace/openjdk-orb/src/share/classes/org/omg/PortableServer/poa.idl
* poniedziałek, 13 maja 2019 00:03:15 CEST
*/
/**
* ImplicitActivationPolicyValue has the following
* semantics.
* IMPLICIT_ACTIVATION to indicate implicit activation
* of servants. This requires SYSTEM_ID and RETAIN
* policies to be set.
* NO_IMPLICIT_ACTIVATION to indicate no implicit
* servant activation.
*/
public final class ImplicitActivationPolicyValueHolder implements org.omg.CORBA.portable.Streamable
{
public org.omg.PortableServer.ImplicitActivationPolicyValue value = null;
public ImplicitActivationPolicyValueHolder ()
{
}
public ImplicitActivationPolicyValueHolder (org.omg.PortableServer.ImplicitActivationPolicyValue initialValue)
{
value = initialValue;
}
public void _read (org.omg.CORBA.portable.InputStream i)
{
value = org.omg.PortableServer.ImplicitActivationPolicyValueHelper.read (i);
}
public void _write (org.omg.CORBA.portable.OutputStream o)
{
org.omg.PortableServer.ImplicitActivationPolicyValueHelper.write (o, value);
}
public org.omg.CORBA.TypeCode _type ()
{
return org.omg.PortableServer.ImplicitActivationPolicyValueHelper.type ();
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy