org.omg.CSI.X509CertificateChainHolder Maven / Gradle / Ivy
package org.omg.CSI;
/**
* org/omg/CSI/X509CertificateChainHolder.java .
* Generated by the IDL-to-Java compiler (portable), version "3.2"
* from /home/tomek/workspace/openjdk-orb/src/share/classes/org/omg/CSI/CSI.idl
* Thursday, June 22, 2023 7:19:19 PM CEST
*/
// representation of Certificate is as defined in [IETF RFC 2459].
public final class X509CertificateChainHolder implements org.omg.CORBA.portable.Streamable
{
public byte value[] = null;
public X509CertificateChainHolder ()
{
}
public X509CertificateChainHolder (byte[] initialValue)
{
value = initialValue;
}
public void _read (org.omg.CORBA.portable.InputStream i)
{
value = org.omg.CSI.X509CertificateChainHelper.read (i);
}
public void _write (org.omg.CORBA.portable.OutputStream o)
{
org.omg.CSI.X509CertificateChainHelper.write (o, value);
}
public org.omg.CORBA.TypeCode _type ()
{
return org.omg.CSI.X509CertificateChainHelper.type ();
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy