Java Code Examples for com.sun.corba.se.impl.ior.ObjectKeyFactoryImpl
The following examples show how to use
com.sun.corba.se.impl.ior.ObjectKeyFactoryImpl. These examples are extracted from open source projects.
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 Project: jdk1.8-source-analysis Source File: OldJIDLObjectKeyTemplate.java License: Apache License 2.0 | 5 votes |
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 2
Source Project: jdk1.8-source-analysis Source File: POAObjectKeyTemplate.java License: Apache License 2.0 | 5 votes |
public POAObjectKeyTemplate( ORB orb, int scid, int serverid, String orbid, ObjectAdapterId objectAdapterId) { super( orb, ObjectKeyFactoryImpl.JAVAMAGIC_NEWER, scid, serverid, orbid, objectAdapterId ) ; setORBVersion( ORBVersionFactory.getORBVersion() ) ; }
Example 3
Source Project: jdk1.8-source-analysis Source File: JIDLObjectKeyTemplate.java License: Apache License 2.0 | 5 votes |
public JIDLObjectKeyTemplate( ORB orb, int scid, int serverid ) { super( orb, ObjectKeyFactoryImpl.JAVAMAGIC_NEWER, scid, serverid, JIDL_ORB_ID, JIDL_OAID ) ; setORBVersion( ORBVersionFactory.getORBVersion() ) ; }
Example 4
Source Project: jdk1.8-source-analysis Source File: OldObjectKeyTemplateBase.java License: Apache License 2.0 | 5 votes |
public OldObjectKeyTemplateBase( ORB orb, int magic, int scid, int serverid, String orbid, ObjectAdapterId oaid ) { super( orb, magic, scid, serverid, orbid, oaid ) ; // set version based on magic if (magic == ObjectKeyFactoryImpl.JAVAMAGIC_OLD) setORBVersion( ORBVersionFactory.getOLD() ) ; else if (magic == ObjectKeyFactoryImpl.JAVAMAGIC_NEW) setORBVersion( ORBVersionFactory.getNEW() ) ; else // any other magic should not be here throw wrapper.badMagic( new Integer( magic ) ) ; }
Example 5
Source Project: jdk1.8-source-analysis Source File: NewObjectKeyTemplateBase.java License: Apache License 2.0 | 5 votes |
public NewObjectKeyTemplateBase( ORB orb, int magic, int scid, int serverid, String orbid, ObjectAdapterId oaid ) { super( orb, magic, scid, serverid, orbid, oaid ) ; // subclass must set the version, since we don't have the object key here. if (magic != ObjectKeyFactoryImpl.JAVAMAGIC_NEWER) throw wrapper.badMagic( new Integer( magic ) ) ; }
Example 6
Source Project: jdk1.8-source-analysis Source File: OldPOAObjectKeyTemplate.java License: Apache License 2.0 | 5 votes |
public ORBVersion getORBVersion() { if (getMagic() == ObjectKeyFactoryImpl.JAVAMAGIC_OLD) return ORBVersionFactory.getOLD() ; else if (getMagic() == ObjectKeyFactoryImpl.JAVAMAGIC_NEW) return ORBVersionFactory.getNEW() ; else throw new INTERNAL() ; }
Example 7
Source Project: TencentKona-8 Source File: OldJIDLObjectKeyTemplate.java License: GNU General Public License v2.0 | 5 votes |
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 8
Source Project: TencentKona-8 Source File: POAObjectKeyTemplate.java License: GNU General Public License v2.0 | 5 votes |
public POAObjectKeyTemplate( ORB orb, int scid, int serverid, String orbid, ObjectAdapterId objectAdapterId) { super( orb, ObjectKeyFactoryImpl.JAVAMAGIC_NEWER, scid, serverid, orbid, objectAdapterId ) ; setORBVersion( ORBVersionFactory.getORBVersion() ) ; }
Example 9
Source Project: TencentKona-8 Source File: JIDLObjectKeyTemplate.java License: GNU General Public License v2.0 | 5 votes |
public JIDLObjectKeyTemplate( ORB orb, int scid, int serverid ) { super( orb, ObjectKeyFactoryImpl.JAVAMAGIC_NEWER, scid, serverid, JIDL_ORB_ID, JIDL_OAID ) ; setORBVersion( ORBVersionFactory.getORBVersion() ) ; }
Example 10
Source Project: TencentKona-8 Source File: OldObjectKeyTemplateBase.java License: GNU General Public License v2.0 | 5 votes |
public OldObjectKeyTemplateBase( ORB orb, int magic, int scid, int serverid, String orbid, ObjectAdapterId oaid ) { super( orb, magic, scid, serverid, orbid, oaid ) ; // set version based on magic if (magic == ObjectKeyFactoryImpl.JAVAMAGIC_OLD) setORBVersion( ORBVersionFactory.getOLD() ) ; else if (magic == ObjectKeyFactoryImpl.JAVAMAGIC_NEW) setORBVersion( ORBVersionFactory.getNEW() ) ; else // any other magic should not be here throw wrapper.badMagic( new Integer( magic ) ) ; }
Example 11
Source Project: TencentKona-8 Source File: NewObjectKeyTemplateBase.java License: GNU General Public License v2.0 | 5 votes |
public NewObjectKeyTemplateBase( ORB orb, int magic, int scid, int serverid, String orbid, ObjectAdapterId oaid ) { super( orb, magic, scid, serverid, orbid, oaid ) ; // subclass must set the version, since we don't have the object key here. if (magic != ObjectKeyFactoryImpl.JAVAMAGIC_NEWER) throw wrapper.badMagic( new Integer( magic ) ) ; }
Example 12
Source Project: TencentKona-8 Source File: OldPOAObjectKeyTemplate.java License: GNU General Public License v2.0 | 5 votes |
public ORBVersion getORBVersion() { if (getMagic() == ObjectKeyFactoryImpl.JAVAMAGIC_OLD) return ORBVersionFactory.getOLD() ; else if (getMagic() == ObjectKeyFactoryImpl.JAVAMAGIC_NEW) return ORBVersionFactory.getNEW() ; else throw new INTERNAL() ; }
Example 13
Source Project: jdk8u60 Source File: OldJIDLObjectKeyTemplate.java License: GNU General Public License v2.0 | 5 votes |
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 14
Source Project: jdk8u60 Source File: POAObjectKeyTemplate.java License: GNU General Public License v2.0 | 5 votes |
public POAObjectKeyTemplate( ORB orb, int scid, int serverid, String orbid, ObjectAdapterId objectAdapterId) { super( orb, ObjectKeyFactoryImpl.JAVAMAGIC_NEWER, scid, serverid, orbid, objectAdapterId ) ; setORBVersion( ORBVersionFactory.getORBVersion() ) ; }
Example 15
Source Project: jdk8u60 Source File: JIDLObjectKeyTemplate.java License: GNU General Public License v2.0 | 5 votes |
public JIDLObjectKeyTemplate( ORB orb, int scid, int serverid ) { super( orb, ObjectKeyFactoryImpl.JAVAMAGIC_NEWER, scid, serverid, JIDL_ORB_ID, JIDL_OAID ) ; setORBVersion( ORBVersionFactory.getORBVersion() ) ; }
Example 16
Source Project: jdk8u60 Source File: OldObjectKeyTemplateBase.java License: GNU General Public License v2.0 | 5 votes |
public OldObjectKeyTemplateBase( ORB orb, int magic, int scid, int serverid, String orbid, ObjectAdapterId oaid ) { super( orb, magic, scid, serverid, orbid, oaid ) ; // set version based on magic if (magic == ObjectKeyFactoryImpl.JAVAMAGIC_OLD) setORBVersion( ORBVersionFactory.getOLD() ) ; else if (magic == ObjectKeyFactoryImpl.JAVAMAGIC_NEW) setORBVersion( ORBVersionFactory.getNEW() ) ; else // any other magic should not be here throw wrapper.badMagic( new Integer( magic ) ) ; }
Example 17
Source Project: jdk8u60 Source File: NewObjectKeyTemplateBase.java License: GNU General Public License v2.0 | 5 votes |
public NewObjectKeyTemplateBase( ORB orb, int magic, int scid, int serverid, String orbid, ObjectAdapterId oaid ) { super( orb, magic, scid, serverid, orbid, oaid ) ; // subclass must set the version, since we don't have the object key here. if (magic != ObjectKeyFactoryImpl.JAVAMAGIC_NEWER) throw wrapper.badMagic( new Integer( magic ) ) ; }
Example 18
Source Project: jdk8u60 Source File: OldPOAObjectKeyTemplate.java License: GNU General Public License v2.0 | 5 votes |
public ORBVersion getORBVersion() { if (getMagic() == ObjectKeyFactoryImpl.JAVAMAGIC_OLD) return ORBVersionFactory.getOLD() ; else if (getMagic() == ObjectKeyFactoryImpl.JAVAMAGIC_NEW) return ORBVersionFactory.getNEW() ; else throw new INTERNAL() ; }
Example 19
Source Project: JDKSourceCode1.8 Source File: OldJIDLObjectKeyTemplate.java License: MIT License | 5 votes |
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 20
Source Project: JDKSourceCode1.8 Source File: POAObjectKeyTemplate.java License: MIT License | 5 votes |
public POAObjectKeyTemplate( ORB orb, int scid, int serverid, String orbid, ObjectAdapterId objectAdapterId) { super( orb, ObjectKeyFactoryImpl.JAVAMAGIC_NEWER, scid, serverid, orbid, objectAdapterId ) ; setORBVersion( ORBVersionFactory.getORBVersion() ) ; }
Example 21
Source Project: JDKSourceCode1.8 Source File: JIDLObjectKeyTemplate.java License: MIT License | 5 votes |
public JIDLObjectKeyTemplate( ORB orb, int scid, int serverid ) { super( orb, ObjectKeyFactoryImpl.JAVAMAGIC_NEWER, scid, serverid, JIDL_ORB_ID, JIDL_OAID ) ; setORBVersion( ORBVersionFactory.getORBVersion() ) ; }
Example 22
Source Project: JDKSourceCode1.8 Source File: OldObjectKeyTemplateBase.java License: MIT License | 5 votes |
public OldObjectKeyTemplateBase( ORB orb, int magic, int scid, int serverid, String orbid, ObjectAdapterId oaid ) { super( orb, magic, scid, serverid, orbid, oaid ) ; // set version based on magic if (magic == ObjectKeyFactoryImpl.JAVAMAGIC_OLD) setORBVersion( ORBVersionFactory.getOLD() ) ; else if (magic == ObjectKeyFactoryImpl.JAVAMAGIC_NEW) setORBVersion( ORBVersionFactory.getNEW() ) ; else // any other magic should not be here throw wrapper.badMagic( new Integer( magic ) ) ; }
Example 23
Source Project: JDKSourceCode1.8 Source File: NewObjectKeyTemplateBase.java License: MIT License | 5 votes |
public NewObjectKeyTemplateBase( ORB orb, int magic, int scid, int serverid, String orbid, ObjectAdapterId oaid ) { super( orb, magic, scid, serverid, orbid, oaid ) ; // subclass must set the version, since we don't have the object key here. if (magic != ObjectKeyFactoryImpl.JAVAMAGIC_NEWER) throw wrapper.badMagic( new Integer( magic ) ) ; }
Example 24
Source Project: JDKSourceCode1.8 Source File: OldPOAObjectKeyTemplate.java License: MIT License | 5 votes |
public ORBVersion getORBVersion() { if (getMagic() == ObjectKeyFactoryImpl.JAVAMAGIC_OLD) return ORBVersionFactory.getOLD() ; else if (getMagic() == ObjectKeyFactoryImpl.JAVAMAGIC_NEW) return ORBVersionFactory.getNEW() ; else throw new INTERNAL() ; }
Example 25
Source Project: openjdk-jdk8u Source File: OldJIDLObjectKeyTemplate.java License: GNU General Public License v2.0 | 5 votes |
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 26
Source Project: openjdk-jdk8u Source File: POAObjectKeyTemplate.java License: GNU General Public License v2.0 | 5 votes |
public POAObjectKeyTemplate( ORB orb, int scid, int serverid, String orbid, ObjectAdapterId objectAdapterId) { super( orb, ObjectKeyFactoryImpl.JAVAMAGIC_NEWER, scid, serverid, orbid, objectAdapterId ) ; setORBVersion( ORBVersionFactory.getORBVersion() ) ; }
Example 27
Source Project: openjdk-jdk8u Source File: JIDLObjectKeyTemplate.java License: GNU General Public License v2.0 | 5 votes |
public JIDLObjectKeyTemplate( ORB orb, int scid, int serverid ) { super( orb, ObjectKeyFactoryImpl.JAVAMAGIC_NEWER, scid, serverid, JIDL_ORB_ID, JIDL_OAID ) ; setORBVersion( ORBVersionFactory.getORBVersion() ) ; }
Example 28
Source Project: openjdk-jdk8u Source File: OldObjectKeyTemplateBase.java License: GNU General Public License v2.0 | 5 votes |
public OldObjectKeyTemplateBase( ORB orb, int magic, int scid, int serverid, String orbid, ObjectAdapterId oaid ) { super( orb, magic, scid, serverid, orbid, oaid ) ; // set version based on magic if (magic == ObjectKeyFactoryImpl.JAVAMAGIC_OLD) setORBVersion( ORBVersionFactory.getOLD() ) ; else if (magic == ObjectKeyFactoryImpl.JAVAMAGIC_NEW) setORBVersion( ORBVersionFactory.getNEW() ) ; else // any other magic should not be here throw wrapper.badMagic( new Integer( magic ) ) ; }
Example 29
Source Project: openjdk-jdk8u Source File: NewObjectKeyTemplateBase.java License: GNU General Public License v2.0 | 5 votes |
public NewObjectKeyTemplateBase( ORB orb, int magic, int scid, int serverid, String orbid, ObjectAdapterId oaid ) { super( orb, magic, scid, serverid, orbid, oaid ) ; // subclass must set the version, since we don't have the object key here. if (magic != ObjectKeyFactoryImpl.JAVAMAGIC_NEWER) throw wrapper.badMagic( new Integer( magic ) ) ; }
Example 30
Source Project: openjdk-jdk8u Source File: OldPOAObjectKeyTemplate.java License: GNU General Public License v2.0 | 5 votes |
public ORBVersion getORBVersion() { if (getMagic() == ObjectKeyFactoryImpl.JAVAMAGIC_OLD) return ORBVersionFactory.getOLD() ; else if (getMagic() == ObjectKeyFactoryImpl.JAVAMAGIC_NEW) return ORBVersionFactory.getNEW() ; else throw new INTERNAL() ; }