Java Code Examples for com.sun.corba.se.spi.orb.ORBVersionFactory
The following examples show how to use
com.sun.corba.se.spi.orb.ORBVersionFactory. 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: openjdk-8-source Source File: Util.java License: GNU General Public License v2.0 | 6 votes |
/** * This is used to create the TypeCode for a null reference. * It also handles backwards compatibility with JDK 1.3.x. * * This method will not return null. */ private TypeCode createTypeCodeForNull(org.omg.CORBA.ORB orb) { if (orb instanceof ORB) { ORB ourORB = (ORB)orb; // Preserve backwards compatibility with Kestrel and Ladybird // by not fully implementing interop issue resolution 3857, // and returning a null TypeCode with a tk_value TCKind. // If we're not talking to Kestrel or Ladybird, fall through // to the abstract interface case (also used for foreign ORBs). if (!ORBVersionFactory.getFOREIGN().equals(ourORB.getORBVersion()) && ORBVersionFactory.getNEWER().compareTo(ourORB.getORBVersion()) > 0) { return orb.get_primitive_tc(TCKind.tk_value); } } // Use tk_abstract_interface as detailed in the resolution // REVISIT: Define this in IDL and get the ID in generated code String abstractBaseID = "IDL:omg.org/CORBA/AbstractBase:1.0"; return orb.create_abstract_interface_tc(abstractBaseID, ""); }
Example 2
Source Project: jdk1.8-source-analysis Source File: InputStreamHook.java License: Apache License 2.0 | 6 votes |
public void readData(InputStreamHook stream) throws IOException { org.omg.CORBA.ORB orb = stream.getOrbStream().orb(); if ((orb == null) || !(orb instanceof com.sun.corba.se.spi.orb.ORB)) { throw new StreamCorruptedException( "Default data must be read first"); } ORBVersion clientOrbVersion = ((com.sun.corba.se.spi.orb.ORB)orb).getORBVersion(); // Fix Date interop bug. For older versions of the ORB don't do // anything for readData(). Before this used to throw // StreamCorruptedException for older versions of the ORB where // calledDefaultWriteObject always returns true. if ((ORBVersionFactory.getPEORB().compareTo(clientOrbVersion) <= 0) || (clientOrbVersion.equals(ORBVersionFactory.getFOREIGN()))) { // XXX I18N and logging needed. throw new StreamCorruptedException("Default data must be read first"); } }
Example 3
Source Project: openjdk-jdk8u-backup Source File: Util.java License: GNU General Public License v2.0 | 6 votes |
/** * This is used to create the TypeCode for a null reference. * It also handles backwards compatibility with JDK 1.3.x. * * This method will not return null. */ private TypeCode createTypeCodeForNull(org.omg.CORBA.ORB orb) { if (orb instanceof ORB) { ORB ourORB = (ORB)orb; // Preserve backwards compatibility with Kestrel and Ladybird // by not fully implementing interop issue resolution 3857, // and returning a null TypeCode with a tk_value TCKind. // If we're not talking to Kestrel or Ladybird, fall through // to the abstract interface case (also used for foreign ORBs). if (!ORBVersionFactory.getFOREIGN().equals(ourORB.getORBVersion()) && ORBVersionFactory.getNEWER().compareTo(ourORB.getORBVersion()) > 0) { return orb.get_primitive_tc(TCKind.tk_value); } } // Use tk_abstract_interface as detailed in the resolution // REVISIT: Define this in IDL and get the ID in generated code String abstractBaseID = "IDL:omg.org/CORBA/AbstractBase:1.0"; return orb.create_abstract_interface_tc(abstractBaseID, ""); }
Example 4
Source Project: openjdk-8 Source File: Util.java License: GNU General Public License v2.0 | 6 votes |
/** * This is used to create the TypeCode for a null reference. * It also handles backwards compatibility with JDK 1.3.x. * * This method will not return null. */ private TypeCode createTypeCodeForNull(org.omg.CORBA.ORB orb) { if (orb instanceof ORB) { ORB ourORB = (ORB)orb; // Preserve backwards compatibility with Kestrel and Ladybird // by not fully implementing interop issue resolution 3857, // and returning a null TypeCode with a tk_value TCKind. // If we're not talking to Kestrel or Ladybird, fall through // to the abstract interface case (also used for foreign ORBs). if (!ORBVersionFactory.getFOREIGN().equals(ourORB.getORBVersion()) && ORBVersionFactory.getNEWER().compareTo(ourORB.getORBVersion()) > 0) { return orb.get_primitive_tc(TCKind.tk_value); } } // Use tk_abstract_interface as detailed in the resolution // REVISIT: Define this in IDL and get the ID in generated code String abstractBaseID = "IDL:omg.org/CORBA/AbstractBase:1.0"; return orb.create_abstract_interface_tc(abstractBaseID, ""); }
Example 5
Source Project: TencentKona-8 Source File: Util.java License: GNU General Public License v2.0 | 6 votes |
/** * This is used to create the TypeCode for a null reference. * It also handles backwards compatibility with JDK 1.3.x. * * This method will not return null. */ private TypeCode createTypeCodeForNull(org.omg.CORBA.ORB orb) { if (orb instanceof ORB) { ORB ourORB = (ORB)orb; // Preserve backwards compatibility with Kestrel and Ladybird // by not fully implementing interop issue resolution 3857, // and returning a null TypeCode with a tk_value TCKind. // If we're not talking to Kestrel or Ladybird, fall through // to the abstract interface case (also used for foreign ORBs). if (!ORBVersionFactory.getFOREIGN().equals(ourORB.getORBVersion()) && ORBVersionFactory.getNEWER().compareTo(ourORB.getORBVersion()) > 0) { return orb.get_primitive_tc(TCKind.tk_value); } } // Use tk_abstract_interface as detailed in the resolution // REVISIT: Define this in IDL and get the ID in generated code String abstractBaseID = "IDL:omg.org/CORBA/AbstractBase:1.0"; return orb.create_abstract_interface_tc(abstractBaseID, ""); }
Example 6
Source Project: openjdk-jdk8u Source File: Util.java License: GNU General Public License v2.0 | 6 votes |
/** * This is used to create the TypeCode for a null reference. * It also handles backwards compatibility with JDK 1.3.x. * * This method will not return null. */ private TypeCode createTypeCodeForNull(org.omg.CORBA.ORB orb) { if (orb instanceof ORB) { ORB ourORB = (ORB)orb; // Preserve backwards compatibility with Kestrel and Ladybird // by not fully implementing interop issue resolution 3857, // and returning a null TypeCode with a tk_value TCKind. // If we're not talking to Kestrel or Ladybird, fall through // to the abstract interface case (also used for foreign ORBs). if (!ORBVersionFactory.getFOREIGN().equals(ourORB.getORBVersion()) && ORBVersionFactory.getNEWER().compareTo(ourORB.getORBVersion()) > 0) { return orb.get_primitive_tc(TCKind.tk_value); } } // Use tk_abstract_interface as detailed in the resolution // REVISIT: Define this in IDL and get the ID in generated code String abstractBaseID = "IDL:omg.org/CORBA/AbstractBase:1.0"; return orb.create_abstract_interface_tc(abstractBaseID, ""); }
Example 7
Source Project: hottub Source File: Util.java License: GNU General Public License v2.0 | 6 votes |
/** * This is used to create the TypeCode for a null reference. * It also handles backwards compatibility with JDK 1.3.x. * * This method will not return null. */ private TypeCode createTypeCodeForNull(org.omg.CORBA.ORB orb) { if (orb instanceof ORB) { ORB ourORB = (ORB)orb; // Preserve backwards compatibility with Kestrel and Ladybird // by not fully implementing interop issue resolution 3857, // and returning a null TypeCode with a tk_value TCKind. // If we're not talking to Kestrel or Ladybird, fall through // to the abstract interface case (also used for foreign ORBs). if (!ORBVersionFactory.getFOREIGN().equals(ourORB.getORBVersion()) && ORBVersionFactory.getNEWER().compareTo(ourORB.getORBVersion()) > 0) { return orb.get_primitive_tc(TCKind.tk_value); } } // Use tk_abstract_interface as detailed in the resolution // REVISIT: Define this in IDL and get the ID in generated code String abstractBaseID = "IDL:omg.org/CORBA/AbstractBase:1.0"; return orb.create_abstract_interface_tc(abstractBaseID, ""); }
Example 8
Source Project: jdk8u60 Source File: InputStreamHook.java License: GNU General Public License v2.0 | 6 votes |
public void readData(InputStreamHook stream) throws IOException { org.omg.CORBA.ORB orb = stream.getOrbStream().orb(); if ((orb == null) || !(orb instanceof com.sun.corba.se.spi.orb.ORB)) { throw new StreamCorruptedException( "Default data must be read first"); } ORBVersion clientOrbVersion = ((com.sun.corba.se.spi.orb.ORB)orb).getORBVersion(); // Fix Date interop bug. For older versions of the ORB don't do // anything for readData(). Before this used to throw // StreamCorruptedException for older versions of the ORB where // calledDefaultWriteObject always returns true. if ((ORBVersionFactory.getPEORB().compareTo(clientOrbVersion) <= 0) || (clientOrbVersion.equals(ORBVersionFactory.getFOREIGN()))) { // XXX I18N and logging needed. throw new StreamCorruptedException("Default data must be read first"); } }
Example 9
Source Project: openjdk-8-source Source File: InputStreamHook.java License: GNU General Public License v2.0 | 6 votes |
public void readData(InputStreamHook stream) throws IOException { org.omg.CORBA.ORB orb = stream.getOrbStream().orb(); if ((orb == null) || !(orb instanceof com.sun.corba.se.spi.orb.ORB)) { throw new StreamCorruptedException( "Default data must be read first"); } ORBVersion clientOrbVersion = ((com.sun.corba.se.spi.orb.ORB)orb).getORBVersion(); // Fix Date interop bug. For older versions of the ORB don't do // anything for readData(). Before this used to throw // StreamCorruptedException for older versions of the ORB where // calledDefaultWriteObject always returns true. if ((ORBVersionFactory.getPEORB().compareTo(clientOrbVersion) <= 0) || (clientOrbVersion.equals(ORBVersionFactory.getFOREIGN()))) { // XXX I18N and logging needed. throw new StreamCorruptedException("Default data must be read first"); } }
Example 10
Source Project: openjdk-jdk9 Source File: InputStreamHook.java License: GNU General Public License v2.0 | 6 votes |
public void readData(InputStreamHook stream) throws IOException { org.omg.CORBA.ORB orb = stream.getOrbStream().orb(); if ((orb == null) || !(orb instanceof com.sun.corba.se.spi.orb.ORB)) { throw new StreamCorruptedException( "Default data must be read first"); } ORBVersion clientOrbVersion = ((com.sun.corba.se.spi.orb.ORB)orb).getORBVersion(); // Fix Date interop bug. For older versions of the ORB don't do // anything for readData(). Before this used to throw // StreamCorruptedException for older versions of the ORB where // calledDefaultWriteObject always returns true. if ((ORBVersionFactory.getPEORB().compareTo(clientOrbVersion) <= 0) || (clientOrbVersion.equals(ORBVersionFactory.getFOREIGN()))) { // XXX I18N and logging needed. throw new StreamCorruptedException("Default data must be read first"); } }
Example 11
Source Project: JDKSourceCode1.8 Source File: InputStreamHook.java License: MIT License | 6 votes |
public void readData(InputStreamHook stream) throws IOException { org.omg.CORBA.ORB orb = stream.getOrbStream().orb(); if ((orb == null) || !(orb instanceof com.sun.corba.se.spi.orb.ORB)) { throw new StreamCorruptedException( "Default data must be read first"); } ORBVersion clientOrbVersion = ((com.sun.corba.se.spi.orb.ORB)orb).getORBVersion(); // Fix Date interop bug. For older versions of the ORB don't do // anything for readData(). Before this used to throw // StreamCorruptedException for older versions of the ORB where // calledDefaultWriteObject always returns true. if ((ORBVersionFactory.getPEORB().compareTo(clientOrbVersion) <= 0) || (clientOrbVersion.equals(ORBVersionFactory.getFOREIGN()))) { // XXX I18N and logging needed. throw new StreamCorruptedException("Default data must be read first"); } }
Example 12
Source Project: hottub 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 13
Source Project: jdk1.8-source-analysis Source File: ORBVersionServiceContext.java License: Apache License 2.0 | 5 votes |
public ORBVersionServiceContext(InputStream is, GIOPVersion gv) { super(is, gv) ; // pay particular attention to where the version is being read from! // is contains an encapsulation, ServiceContext reads off the // encapsulation and leaves the pointer in the variable "in", // which points to the long value. version = ORBVersionFactory.create( in ) ; }
Example 14
Source Project: jdk1.8-source-analysis Source File: CorbaClientRequestDispatcherImpl.java License: Apache License 2.0 | 5 votes |
protected void addServiceContexts(CorbaMessageMediator messageMediator) { ORB orb = (ORB)messageMediator.getBroker(); CorbaConnection c = (CorbaConnection) messageMediator.getConnection(); GIOPVersion giopVersion = messageMediator.getGIOPVersion(); ServiceContexts contexts = messageMediator.getRequestServiceContexts(); addCodeSetServiceContext(c, contexts, giopVersion); // Add the RMI-IIOP max stream format version // service context to every request. Once we have GIOP 1.3, // we could skip it since we now support version 2, but // probably safer to always send it. contexts.put(MaxStreamFormatVersionServiceContext.singleton); // ORBVersion servicecontext needs to be sent ORBVersionServiceContext ovsc = new ORBVersionServiceContext( ORBVersionFactory.getORBVersion() ) ; contexts.put( ovsc ) ; // NOTE : We only want to send the runtime context the first time if ((c != null) && !c.isPostInitialContexts()) { // Do not do c.setPostInitialContexts() here. // If a client interceptor send_request does a ForwardRequest // which ends up using the same connection then the service // context would not be sent. SendingContextServiceContext scsc = new SendingContextServiceContext( orb.getFVDCodeBaseIOR() ) ; //d11638 contexts.put( scsc ) ; } }
Example 15
Source Project: openjdk-8-source 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 16
Source Project: jdk1.8-source-analysis Source File: CDROutputStream_1_0.java License: Apache License 2.0 | 5 votes |
private void writeClassBody(Class clz) { if (orb == null || ORBVersionFactory.getFOREIGN().equals(orb.getORBVersion()) || ORBVersionFactory.getNEWER().compareTo(orb.getORBVersion()) <= 0) { write_value(Util.getCodebase(clz)); write_value(repIdStrs.createForAnyType(clz)); } else { write_value(repIdStrs.createForAnyType(clz)); write_value(Util.getCodebase(clz)); } }
Example 17
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 18
Source Project: hottub 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 19
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() ; }
Example 20
Source Project: openjdk-8 Source File: CDROutputStream_1_0.java License: GNU General Public License v2.0 | 5 votes |
private void writeClassBody(Class clz) { if (orb == null || ORBVersionFactory.getFOREIGN().equals(orb.getORBVersion()) || ORBVersionFactory.getNEWER().compareTo(orb.getORBVersion()) <= 0) { write_value(Util.getCodebase(clz)); write_value(repIdStrs.createForAnyType(clz)); } else { write_value(repIdStrs.createForAnyType(clz)); write_value(Util.getCodebase(clz)); } }
Example 21
Source Project: hottub 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 22
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 23
Source Project: openjdk-8-source Source File: CDROutputStream_1_0.java License: GNU General Public License v2.0 | 5 votes |
private void writeClassBody(Class clz) { if (orb == null || ORBVersionFactory.getFOREIGN().equals(orb.getORBVersion()) || ORBVersionFactory.getNEWER().compareTo(orb.getORBVersion()) <= 0) { write_value(Util.getCodebase(clz)); write_value(repIdStrs.createForAnyType(clz)); } else { write_value(repIdStrs.createForAnyType(clz)); write_value(Util.getCodebase(clz)); } }
Example 24
Source Project: openjdk-8-source Source File: CorbaClientRequestDispatcherImpl.java License: GNU General Public License v2.0 | 5 votes |
protected void addServiceContexts(CorbaMessageMediator messageMediator) { ORB orb = (ORB)messageMediator.getBroker(); CorbaConnection c = (CorbaConnection) messageMediator.getConnection(); GIOPVersion giopVersion = messageMediator.getGIOPVersion(); ServiceContexts contexts = messageMediator.getRequestServiceContexts(); addCodeSetServiceContext(c, contexts, giopVersion); // Add the RMI-IIOP max stream format version // service context to every request. Once we have GIOP 1.3, // we could skip it since we now support version 2, but // probably safer to always send it. contexts.put(MaxStreamFormatVersionServiceContext.singleton); // ORBVersion servicecontext needs to be sent ORBVersionServiceContext ovsc = new ORBVersionServiceContext( ORBVersionFactory.getORBVersion() ) ; contexts.put( ovsc ) ; // NOTE : We only want to send the runtime context the first time if ((c != null) && !c.isPostInitialContexts()) { // Do not do c.setPostInitialContexts() here. // If a client interceptor send_request does a ForwardRequest // which ends up using the same connection then the service // context would not be sent. SendingContextServiceContext scsc = new SendingContextServiceContext( orb.getFVDCodeBaseIOR() ) ; //d11638 contexts.put( scsc ) ; } }
Example 25
Source Project: TencentKona-8 Source File: CDROutputStream_1_0.java License: GNU General Public License v2.0 | 5 votes |
private void writeClassBody(Class clz) { if (orb == null || ORBVersionFactory.getFOREIGN().equals(orb.getORBVersion()) || ORBVersionFactory.getNEWER().compareTo(orb.getORBVersion()) <= 0) { write_value(Util.getCodebase(clz)); write_value(repIdStrs.createForAnyType(clz)); } else { write_value(repIdStrs.createForAnyType(clz)); write_value(Util.getCodebase(clz)); } }
Example 26
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 27
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 28
Source Project: openjdk-jdk8u-backup 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 29
Source Project: openjdk-jdk9 Source File: ORBVersionServiceContext.java License: GNU General Public License v2.0 | 5 votes |
public ORBVersionServiceContext(InputStream is, GIOPVersion gv) { super(is, gv) ; // pay particular attention to where the version is being read from! // is contains an encapsulation, ServiceContext reads off the // encapsulation and leaves the pointer in the variable "in", // which points to the long value. version = ORBVersionFactory.create( in ) ; }
Example 30
Source Project: jdk8u60 Source File: ORBVersionServiceContext.java License: GNU General Public License v2.0 | 5 votes |
public ORBVersionServiceContext(InputStream is, GIOPVersion gv) { super(is, gv) ; // pay particular attention to where the version is being read from! // is contains an encapsulation, ServiceContext reads off the // encapsulation and leaves the pointer in the variable "in", // which points to the long value. version = ORBVersionFactory.create( in ) ; }