org.omg.SSLIOP.SSLHolder 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.SSLIOP;
/**
* org/omg/SSLIOP/SSLHolder.java .
* Generated by the IDL-to-Java compiler (portable), version "3.2"
* from /home/tomek/workspace/openjdk-orb/javax/src/share/classes/org/omg/SSLIOP/SSLIOP.idl
* Friday, December 10, 2021 1:31:02 PM CET
*/
public final class SSLHolder implements org.omg.CORBA.portable.Streamable
{
public org.omg.SSLIOP.SSL value = null;
public SSLHolder ()
{
}
public SSLHolder (org.omg.SSLIOP.SSL initialValue)
{
value = initialValue;
}
public void _read (org.omg.CORBA.portable.InputStream i)
{
value = org.omg.SSLIOP.SSLHelper.read (i);
}
public void _write (org.omg.CORBA.portable.OutputStream o)
{
org.omg.SSLIOP.SSLHelper.write (o, value);
}
public org.omg.CORBA.TypeCode _type ()
{
return org.omg.SSLIOP.SSLHelper.type ();
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy