org.omg.CORBA.OctetSeqHolder Java Examples

The following examples show how to use org.omg.CORBA.OctetSeqHolder. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: JIDLObjectKeyTemplate.java    From openjdk-8-source with GNU General Public License v2.0 5 votes vote down vote up
/** This constructor reads a complete ObjectKey (template and Id)
* from the stream.
*/
public JIDLObjectKeyTemplate( ORB orb, int magic, int scid, InputStream is,
    OctetSeqHolder osh )
{
    super( orb, magic, scid, is.read_long(), JIDL_ORB_ID, JIDL_OAID );

    osh.value = readObjectKey( is ) ;

    setORBVersion( is ) ;
}
 
Example #2
Source File: POAObjectKeyTemplate.java    From openjdk-8-source with GNU General Public License v2.0 5 votes vote down vote up
/** This constructor reads a complete ObjectKey (template and Id)
* from the stream.
*/
public POAObjectKeyTemplate( ORB orb, int magic, int scid, InputStream is,
    OctetSeqHolder osh )
{
    super( orb, magic, scid, is.read_long(), is.read_string(),
        new ObjectAdapterIdArray( POANameHelper.read( is ) ) ) ;

    osh.value = readObjectKey( is ) ;

    setORBVersion( is ) ;
}
 
Example #3
Source File: OldJIDLObjectKeyTemplate.java    From openjdk-8-source with GNU General Public License v2.0 5 votes vote down vote up
public OldJIDLObjectKeyTemplate( ORB orb, int magic, int scid,
    InputStream is, OctetSeqHolder osh )
{
    this( orb, magic, scid, is );

    osh.value = readObjectKey( is ) ;

    /**
     * Beginning with JDK 1.3.1_01, a byte was placed at the end of
     * the object key with a value indicating the patch version.
     * JDK 1.3.1_01 had the value 1.  If other patches are necessary
     * which involve ORB versioning changes, they should increment
     * the patch version.
     *
     * Note that if we see a value greater than 1 in this code, we
     * will treat it as if we're talking to the most recent ORB version.
     *
     * WARNING: This code is sensitive to changes in CDRInputStream
     * getPosition.  It assumes that the CDRInputStream is an
     * encapsulation whose position can be compared to the object
     * key array length.
     */
    if (magic == ObjectKeyFactoryImpl.JAVAMAGIC_NEW &&
        osh.value.length > ((CDRInputStream)is).getPosition()) {

        patchVersion = is.read_octet();

        if (patchVersion == ObjectKeyFactoryImpl.JDK1_3_1_01_PATCH_LEVEL)
            setORBVersion(ORBVersionFactory.getJDK1_3_1_01());
        else if (patchVersion > ObjectKeyFactoryImpl.JDK1_3_1_01_PATCH_LEVEL)
            setORBVersion(ORBVersionFactory.getORBVersion());
        else
            throw wrapper.invalidJdk131PatchLevel( new Integer( patchVersion ) ) ;
    }
}
 
Example #4
Source File: OldJIDLObjectKeyTemplate.java    From jdk1.8-source-analysis with Apache License 2.0 5 votes vote down vote up
public OldJIDLObjectKeyTemplate( ORB orb, int magic, int scid,
    InputStream is, OctetSeqHolder osh )
{
    this( orb, magic, scid, is );

    osh.value = readObjectKey( is ) ;

    /**
     * Beginning with JDK 1.3.1_01, a byte was placed at the end of
     * the object key with a value indicating the patch version.
     * JDK 1.3.1_01 had the value 1.  If other patches are necessary
     * which involve ORB versioning changes, they should increment
     * the patch version.
     *
     * Note that if we see a value greater than 1 in this code, we
     * will treat it as if we're talking to the most recent ORB version.
     *
     * WARNING: This code is sensitive to changes in CDRInputStream
     * getPosition.  It assumes that the CDRInputStream is an
     * encapsulation whose position can be compared to the object
     * key array length.
     */
    if (magic == ObjectKeyFactoryImpl.JAVAMAGIC_NEW &&
        osh.value.length > ((CDRInputStream)is).getPosition()) {

        patchVersion = is.read_octet();

        if (patchVersion == ObjectKeyFactoryImpl.JDK1_3_1_01_PATCH_LEVEL)
            setORBVersion(ORBVersionFactory.getJDK1_3_1_01());
        else if (patchVersion > ObjectKeyFactoryImpl.JDK1_3_1_01_PATCH_LEVEL)
            setORBVersion(ORBVersionFactory.getORBVersion());
        else
            throw wrapper.invalidJdk131PatchLevel( new Integer( patchVersion ) ) ;
    }
}
 
Example #5
Source File: ObjectKeyFactoryImpl.java    From hottub with GNU General Public License v2.0 5 votes vote down vote up
/** Creates an ObjectKeyTemplate from the InputStream.  Most of the
* decoding is done inside the handler.
*/
private ObjectKeyTemplate create( InputStream is, Handler handler,
    OctetSeqHolder osh )
{
    ObjectKeyTemplate oktemp = null ;

    try {
        is.mark(0) ;
        int magic = is.read_long() ;

        if (validMagic( magic )) {
            int scid = is.read_long() ;
            oktemp = handler.handle( magic, scid, is, osh ) ;
        }
    } catch (MARSHAL mexc) {
        // XXX log this error
        // ignore this: error handled below because oktemp == null
    }

    if (oktemp == null)
        // If we did not successfully construct a oktemp, reset the
        // stream so that WireObjectKeyTemplate can correctly construct the
        // object key.
        try {
            is.reset() ;
        } catch (IOException exc) {
            // XXX log this error
            // ignore this
        }

    return oktemp ;
}
 
Example #6
Source File: JIDLObjectKeyTemplate.java    From hottub with GNU General Public License v2.0 5 votes vote down vote up
/** This constructor reads a complete ObjectKey (template and Id)
* from the stream.
*/
public JIDLObjectKeyTemplate( ORB orb, int magic, int scid, InputStream is,
    OctetSeqHolder osh )
{
    super( orb, magic, scid, is.read_long(), JIDL_ORB_ID, JIDL_OAID );

    osh.value = readObjectKey( is ) ;

    setORBVersion( is ) ;
}
 
Example #7
Source File: POAObjectKeyTemplate.java    From hottub with GNU General Public License v2.0 5 votes vote down vote up
/** This constructor reads a complete ObjectKey (template and Id)
* from the stream.
*/
public POAObjectKeyTemplate( ORB orb, int magic, int scid, InputStream is,
    OctetSeqHolder osh )
{
    super( orb, magic, scid, is.read_long(), is.read_string(),
        new ObjectAdapterIdArray( POANameHelper.read( is ) ) ) ;

    osh.value = readObjectKey( is ) ;

    setORBVersion( is ) ;
}
 
Example #8
Source File: OldPOAObjectKeyTemplate.java    From hottub with GNU General Public License v2.0 5 votes vote down vote up
/** This constructor reads a complete ObjectKey (template and Id)
* from the stream.
*/
public OldPOAObjectKeyTemplate( ORB orb, int magic, int scid, InputStream is,
    OctetSeqHolder osh )
{
    this( orb, magic, scid, is ) ;
    osh.value = readObjectKey( is ) ;
}
 
Example #9
Source File: ObjectKeyFactoryImpl.java    From openjdk-8-source with GNU General Public License v2.0 5 votes vote down vote up
/** Creates an ObjectKeyTemplate from the InputStream.  Most of the
* decoding is done inside the handler.
*/
private ObjectKeyTemplate create( InputStream is, Handler handler,
    OctetSeqHolder osh )
{
    ObjectKeyTemplate oktemp = null ;

    try {
        is.mark(0) ;
        int magic = is.read_long() ;

        if (validMagic( magic )) {
            int scid = is.read_long() ;
            oktemp = handler.handle( magic, scid, is, osh ) ;
        }
    } catch (MARSHAL mexc) {
        // XXX log this error
        // ignore this: error handled below because oktemp == null
    }

    if (oktemp == null)
        // If we did not successfully construct a oktemp, reset the
        // stream so that WireObjectKeyTemplate can correctly construct the
        // object key.
        try {
            is.reset() ;
        } catch (IOException exc) {
            // XXX log this error
            // ignore this
        }

    return oktemp ;
}
 
Example #10
Source File: OldPOAObjectKeyTemplate.java    From openjdk-8-source with GNU General Public License v2.0 5 votes vote down vote up
/** This constructor reads a complete ObjectKey (template and Id)
* from the stream.
*/
public OldPOAObjectKeyTemplate( ORB orb, int magic, int scid, InputStream is,
    OctetSeqHolder osh )
{
    this( orb, magic, scid, is ) ;
    osh.value = readObjectKey( is ) ;
}
 
Example #11
Source File: OldJIDLObjectKeyTemplate.java    From openjdk-8 with GNU General Public License v2.0 5 votes vote down vote up
public OldJIDLObjectKeyTemplate( ORB orb, int magic, int scid,
    InputStream is, OctetSeqHolder osh )
{
    this( orb, magic, scid, is );

    osh.value = readObjectKey( is ) ;

    /**
     * Beginning with JDK 1.3.1_01, a byte was placed at the end of
     * the object key with a value indicating the patch version.
     * JDK 1.3.1_01 had the value 1.  If other patches are necessary
     * which involve ORB versioning changes, they should increment
     * the patch version.
     *
     * Note that if we see a value greater than 1 in this code, we
     * will treat it as if we're talking to the most recent ORB version.
     *
     * WARNING: This code is sensitive to changes in CDRInputStream
     * getPosition.  It assumes that the CDRInputStream is an
     * encapsulation whose position can be compared to the object
     * key array length.
     */
    if (magic == ObjectKeyFactoryImpl.JAVAMAGIC_NEW &&
        osh.value.length > ((CDRInputStream)is).getPosition()) {

        patchVersion = is.read_octet();

        if (patchVersion == ObjectKeyFactoryImpl.JDK1_3_1_01_PATCH_LEVEL)
            setORBVersion(ORBVersionFactory.getJDK1_3_1_01());
        else if (patchVersion > ObjectKeyFactoryImpl.JDK1_3_1_01_PATCH_LEVEL)
            setORBVersion(ORBVersionFactory.getORBVersion());
        else
            throw wrapper.invalidJdk131PatchLevel( new Integer( patchVersion ) ) ;
    }
}
 
Example #12
Source File: POAObjectKeyTemplate.java    From openjdk-8 with GNU General Public License v2.0 5 votes vote down vote up
/** This constructor reads a complete ObjectKey (template and Id)
* from the stream.
*/
public POAObjectKeyTemplate( ORB orb, int magic, int scid, InputStream is,
    OctetSeqHolder osh )
{
    super( orb, magic, scid, is.read_long(), is.read_string(),
        new ObjectAdapterIdArray( POANameHelper.read( is ) ) ) ;

    osh.value = readObjectKey( is ) ;

    setORBVersion( is ) ;
}
 
Example #13
Source File: JIDLObjectKeyTemplate.java    From openjdk-8 with GNU General Public License v2.0 5 votes vote down vote up
/** This constructor reads a complete ObjectKey (template and Id)
* from the stream.
*/
public JIDLObjectKeyTemplate( ORB orb, int magic, int scid, InputStream is,
    OctetSeqHolder osh )
{
    super( orb, magic, scid, is.read_long(), JIDL_ORB_ID, JIDL_OAID );

    osh.value = readObjectKey( is ) ;

    setORBVersion( is ) ;
}
 
Example #14
Source File: ObjectKeyFactoryImpl.java    From openjdk-8 with GNU General Public License v2.0 5 votes vote down vote up
/** Creates an ObjectKeyTemplate from the InputStream.  Most of the
* decoding is done inside the handler.
*/
private ObjectKeyTemplate create( InputStream is, Handler handler,
    OctetSeqHolder osh )
{
    ObjectKeyTemplate oktemp = null ;

    try {
        is.mark(0) ;
        int magic = is.read_long() ;

        if (validMagic( magic )) {
            int scid = is.read_long() ;
            oktemp = handler.handle( magic, scid, is, osh ) ;
        }
    } catch (MARSHAL mexc) {
        // XXX log this error
        // ignore this: error handled below because oktemp == null
    }

    if (oktemp == null)
        // If we did not successfully construct a oktemp, reset the
        // stream so that WireObjectKeyTemplate can correctly construct the
        // object key.
        try {
            is.reset() ;
        } catch (IOException exc) {
            // XXX log this error
            // ignore this
        }

    return oktemp ;
}
 
Example #15
Source File: OldPOAObjectKeyTemplate.java    From openjdk-8 with GNU General Public License v2.0 5 votes vote down vote up
/** This constructor reads a complete ObjectKey (template and Id)
* from the stream.
*/
public OldPOAObjectKeyTemplate( ORB orb, int magic, int scid, InputStream is,
    OctetSeqHolder osh )
{
    this( orb, magic, scid, is ) ;
    osh.value = readObjectKey( is ) ;
}
 
Example #16
Source File: OldJIDLObjectKeyTemplate.java    From hottub with GNU General Public License v2.0 5 votes vote down vote up
public OldJIDLObjectKeyTemplate( ORB orb, int magic, int scid,
    InputStream is, OctetSeqHolder osh )
{
    this( orb, magic, scid, is );

    osh.value = readObjectKey( is ) ;

    /**
     * Beginning with JDK 1.3.1_01, a byte was placed at the end of
     * the object key with a value indicating the patch version.
     * JDK 1.3.1_01 had the value 1.  If other patches are necessary
     * which involve ORB versioning changes, they should increment
     * the patch version.
     *
     * Note that if we see a value greater than 1 in this code, we
     * will treat it as if we're talking to the most recent ORB version.
     *
     * WARNING: This code is sensitive to changes in CDRInputStream
     * getPosition.  It assumes that the CDRInputStream is an
     * encapsulation whose position can be compared to the object
     * key array length.
     */
    if (magic == ObjectKeyFactoryImpl.JAVAMAGIC_NEW &&
        osh.value.length > ((CDRInputStream)is).getPosition()) {

        patchVersion = is.read_octet();

        if (patchVersion == ObjectKeyFactoryImpl.JDK1_3_1_01_PATCH_LEVEL)
            setORBVersion(ORBVersionFactory.getJDK1_3_1_01());
        else if (patchVersion > ObjectKeyFactoryImpl.JDK1_3_1_01_PATCH_LEVEL)
            setORBVersion(ORBVersionFactory.getORBVersion());
        else
            throw wrapper.invalidJdk131PatchLevel( new Integer( patchVersion ) ) ;
    }
}
 
Example #17
Source File: OldPOAObjectKeyTemplate.java    From openjdk-jdk9 with GNU General Public License v2.0 5 votes vote down vote up
/** This constructor reads a complete ObjectKey (template and Id)
* from the stream.
*/
public OldPOAObjectKeyTemplate( ORB orb, int magic, int scid, InputStream is,
    OctetSeqHolder osh )
{
    this( orb, magic, scid, is ) ;
    osh.value = readObjectKey( is ) ;
}
 
Example #18
Source File: ObjectKeyFactoryImpl.java    From openjdk-jdk9 with GNU General Public License v2.0 5 votes vote down vote up
/** Creates an ObjectKeyTemplate from the InputStream.  Most of the
* decoding is done inside the handler.
*/
private ObjectKeyTemplate create( InputStream is, Handler handler,
    OctetSeqHolder osh )
{
    ObjectKeyTemplate oktemp = null ;

    try {
        is.mark(0) ;
        int magic = is.read_long() ;

        if (validMagic( magic )) {
            int scid = is.read_long() ;
            oktemp = handler.handle( magic, scid, is, osh ) ;
        }
    } catch (MARSHAL mexc) {
        // XXX log this error
        // ignore this: error handled below because oktemp == null
    }

    if (oktemp == null)
        // If we did not successfully construct a oktemp, reset the
        // stream so that WireObjectKeyTemplate can correctly construct the
        // object key.
        try {
            is.reset() ;
        } catch (IOException exc) {
            // XXX log this error
            // ignore this
        }

    return oktemp ;
}
 
Example #19
Source File: JIDLObjectKeyTemplate.java    From openjdk-jdk9 with GNU General Public License v2.0 5 votes vote down vote up
/** This constructor reads a complete ObjectKey (template and Id)
* from the stream.
*/
public JIDLObjectKeyTemplate( ORB orb, int magic, int scid, InputStream is,
    OctetSeqHolder osh )
{
    super( orb, magic, scid, is.read_long(), JIDL_ORB_ID, JIDL_OAID );

    osh.value = readObjectKey( is ) ;

    setORBVersion( is ) ;
}
 
Example #20
Source File: POAObjectKeyTemplate.java    From openjdk-jdk9 with GNU General Public License v2.0 5 votes vote down vote up
/** This constructor reads a complete ObjectKey (template and Id)
* from the stream.
*/
public POAObjectKeyTemplate( ORB orb, int magic, int scid, InputStream is,
    OctetSeqHolder osh )
{
    super( orb, magic, scid, is.read_long(), is.read_string(),
        new ObjectAdapterIdArray( POANameHelper.read( is ) ) ) ;

    osh.value = readObjectKey( is ) ;

    setORBVersion( is ) ;
}
 
Example #21
Source File: OldJIDLObjectKeyTemplate.java    From openjdk-jdk9 with GNU General Public License v2.0 5 votes vote down vote up
public OldJIDLObjectKeyTemplate( ORB orb, int magic, int scid,
    InputStream is, OctetSeqHolder osh )
{
    this( orb, magic, scid, is );

    osh.value = readObjectKey( is ) ;

    /**
     * Beginning with JDK 1.3.1_01, a byte was placed at the end of
     * the object key with a value indicating the patch version.
     * JDK 1.3.1_01 had the value 1.  If other patches are necessary
     * which involve ORB versioning changes, they should increment
     * the patch version.
     *
     * Note that if we see a value greater than 1 in this code, we
     * will treat it as if we're talking to the most recent ORB version.
     *
     * WARNING: This code is sensitive to changes in CDRInputStream
     * getPosition.  It assumes that the CDRInputStream is an
     * encapsulation whose position can be compared to the object
     * key array length.
     */
    if (magic == ObjectKeyFactoryImpl.JAVAMAGIC_NEW &&
        osh.value.length > ((CDRInputStream)is).getPosition()) {

        patchVersion = is.read_octet();

        if (patchVersion == ObjectKeyFactoryImpl.JDK1_3_1_01_PATCH_LEVEL)
            setORBVersion(ORBVersionFactory.getJDK1_3_1_01());
        else if (patchVersion > ObjectKeyFactoryImpl.JDK1_3_1_01_PATCH_LEVEL)
            setORBVersion(ORBVersionFactory.getORBVersion());
        else
            throw wrapper.invalidJdk131PatchLevel( new Integer( patchVersion ) ) ;
    }
}
 
Example #22
Source File: OldPOAObjectKeyTemplate.java    From openjdk-jdk8u-backup with GNU General Public License v2.0 5 votes vote down vote up
/** This constructor reads a complete ObjectKey (template and Id)
* from the stream.
*/
public OldPOAObjectKeyTemplate( ORB orb, int magic, int scid, InputStream is,
    OctetSeqHolder osh )
{
    this( orb, magic, scid, is ) ;
    osh.value = readObjectKey( is ) ;
}
 
Example #23
Source File: ObjectKeyFactoryImpl.java    From openjdk-jdk8u-backup with GNU General Public License v2.0 5 votes vote down vote up
/** Creates an ObjectKeyTemplate from the InputStream.  Most of the
* decoding is done inside the handler.
*/
private ObjectKeyTemplate create( InputStream is, Handler handler,
    OctetSeqHolder osh )
{
    ObjectKeyTemplate oktemp = null ;

    try {
        is.mark(0) ;
        int magic = is.read_long() ;

        if (validMagic( magic )) {
            int scid = is.read_long() ;
            oktemp = handler.handle( magic, scid, is, osh ) ;
        }
    } catch (MARSHAL mexc) {
        // XXX log this error
        // ignore this: error handled below because oktemp == null
    }

    if (oktemp == null)
        // If we did not successfully construct a oktemp, reset the
        // stream so that WireObjectKeyTemplate can correctly construct the
        // object key.
        try {
            is.reset() ;
        } catch (IOException exc) {
            // XXX log this error
            // ignore this
        }

    return oktemp ;
}
 
Example #24
Source File: JIDLObjectKeyTemplate.java    From openjdk-jdk8u-backup with GNU General Public License v2.0 5 votes vote down vote up
/** This constructor reads a complete ObjectKey (template and Id)
* from the stream.
*/
public JIDLObjectKeyTemplate( ORB orb, int magic, int scid, InputStream is,
    OctetSeqHolder osh )
{
    super( orb, magic, scid, is.read_long(), JIDL_ORB_ID, JIDL_OAID );

    osh.value = readObjectKey( is ) ;

    setORBVersion( is ) ;
}
 
Example #25
Source File: POAObjectKeyTemplate.java    From openjdk-jdk8u-backup with GNU General Public License v2.0 5 votes vote down vote up
/** This constructor reads a complete ObjectKey (template and Id)
* from the stream.
*/
public POAObjectKeyTemplate( ORB orb, int magic, int scid, InputStream is,
    OctetSeqHolder osh )
{
    super( orb, magic, scid, is.read_long(), is.read_string(),
        new ObjectAdapterIdArray( POANameHelper.read( is ) ) ) ;

    osh.value = readObjectKey( is ) ;

    setORBVersion( is ) ;
}
 
Example #26
Source File: OldJIDLObjectKeyTemplate.java    From openjdk-jdk8u-backup with GNU General Public License v2.0 5 votes vote down vote up
public OldJIDLObjectKeyTemplate( ORB orb, int magic, int scid,
    InputStream is, OctetSeqHolder osh )
{
    this( orb, magic, scid, is );

    osh.value = readObjectKey( is ) ;

    /**
     * Beginning with JDK 1.3.1_01, a byte was placed at the end of
     * the object key with a value indicating the patch version.
     * JDK 1.3.1_01 had the value 1.  If other patches are necessary
     * which involve ORB versioning changes, they should increment
     * the patch version.
     *
     * Note that if we see a value greater than 1 in this code, we
     * will treat it as if we're talking to the most recent ORB version.
     *
     * WARNING: This code is sensitive to changes in CDRInputStream
     * getPosition.  It assumes that the CDRInputStream is an
     * encapsulation whose position can be compared to the object
     * key array length.
     */
    if (magic == ObjectKeyFactoryImpl.JAVAMAGIC_NEW &&
        osh.value.length > ((CDRInputStream)is).getPosition()) {

        patchVersion = is.read_octet();

        if (patchVersion == ObjectKeyFactoryImpl.JDK1_3_1_01_PATCH_LEVEL)
            setORBVersion(ORBVersionFactory.getJDK1_3_1_01());
        else if (patchVersion > ObjectKeyFactoryImpl.JDK1_3_1_01_PATCH_LEVEL)
            setORBVersion(ORBVersionFactory.getORBVersion());
        else
            throw wrapper.invalidJdk131PatchLevel( new Integer( patchVersion ) ) ;
    }
}
 
Example #27
Source File: OldPOAObjectKeyTemplate.java    From openjdk-jdk8u with GNU General Public License v2.0 5 votes vote down vote up
/** This constructor reads a complete ObjectKey (template and Id)
* from the stream.
*/
public OldPOAObjectKeyTemplate( ORB orb, int magic, int scid, InputStream is,
    OctetSeqHolder osh )
{
    this( orb, magic, scid, is ) ;
    osh.value = readObjectKey( is ) ;
}
 
Example #28
Source File: ObjectKeyFactoryImpl.java    From openjdk-jdk8u with GNU General Public License v2.0 5 votes vote down vote up
/** Creates an ObjectKeyTemplate from the InputStream.  Most of the
* decoding is done inside the handler.
*/
private ObjectKeyTemplate create( InputStream is, Handler handler,
    OctetSeqHolder osh )
{
    ObjectKeyTemplate oktemp = null ;

    try {
        is.mark(0) ;
        int magic = is.read_long() ;

        if (validMagic( magic )) {
            int scid = is.read_long() ;
            oktemp = handler.handle( magic, scid, is, osh ) ;
        }
    } catch (MARSHAL mexc) {
        // XXX log this error
        // ignore this: error handled below because oktemp == null
    }

    if (oktemp == null)
        // If we did not successfully construct a oktemp, reset the
        // stream so that WireObjectKeyTemplate can correctly construct the
        // object key.
        try {
            is.reset() ;
        } catch (IOException exc) {
            // XXX log this error
            // ignore this
        }

    return oktemp ;
}
 
Example #29
Source File: JIDLObjectKeyTemplate.java    From openjdk-jdk8u with GNU General Public License v2.0 5 votes vote down vote up
/** This constructor reads a complete ObjectKey (template and Id)
* from the stream.
*/
public JIDLObjectKeyTemplate( ORB orb, int magic, int scid, InputStream is,
    OctetSeqHolder osh )
{
    super( orb, magic, scid, is.read_long(), JIDL_ORB_ID, JIDL_OAID );

    osh.value = readObjectKey( is ) ;

    setORBVersion( is ) ;
}
 
Example #30
Source File: POAObjectKeyTemplate.java    From openjdk-jdk8u with GNU General Public License v2.0 5 votes vote down vote up
/** This constructor reads a complete ObjectKey (template and Id)
* from the stream.
*/
public POAObjectKeyTemplate( ORB orb, int magic, int scid, InputStream is,
    OctetSeqHolder osh )
{
    super( orb, magic, scid, is.read_long(), is.read_string(),
        new ObjectAdapterIdArray( POANameHelper.read( is ) ) ) ;

    osh.value = readObjectKey( is ) ;

    setORBVersion( is ) ;
}