├── .github └── dependabot.yml ├── .gitignore ├── CONTRIBUTING.md ├── Jenkinsfile ├── LICENSE.md ├── NOTICE.md ├── README ├── README.md ├── csiv2-idl ├── pom.xml └── src │ └── main │ ├── idl │ ├── CSI.idl │ ├── CSIIOP.idl │ └── GSSUP.idl │ └── java │ └── module-info.java ├── exception-annotation-processor ├── pom.xml └── src │ ├── main │ ├── java │ │ ├── module-info.java │ │ └── org │ │ │ └── glassfish │ │ │ └── corba │ │ │ └── annotation │ │ │ └── processing │ │ │ ├── ExceptionWrapperProcessor.java │ │ │ └── FileGenerator.java │ └── resources │ │ └── META-INF │ │ └── services │ │ └── javax.annotation.processing.Processor │ └── test │ └── java │ └── org │ └── glassfish │ └── corba │ └── annotation │ └── processing │ └── ExceptionWrapperProcessorTestCase.java ├── functional-tests ├── README ├── pom.xml └── src │ └── test │ ├── idl │ ├── adapteractivator.idl │ ├── clientinterceptor.idl │ ├── clientrequestinfo.idl │ ├── codeset.idl │ ├── corba │ │ ├── connectintercept_1_4 │ │ │ └── Ex.idl │ │ ├── exceptiondetailsc │ │ │ └── idlI.idl │ │ ├── folb_8_1 │ │ │ └── folb.idl │ │ ├── hcks │ │ │ └── hcks.idl │ │ ├── islocal │ │ │ └── idlI.idl │ │ ├── poapolicies │ │ │ └── Hello.idl │ │ ├── repid │ │ │ └── BoxedValueTypes.idl │ │ └── requestpartitioning │ │ │ └── Tester.idl │ ├── fwddecl_legal.idl │ ├── idlj_ConstantsAndTypedefs.idl │ ├── idlj_NestedTypeDeclsAndInheritedTypes.idl │ ├── iorinterceptor.idl │ ├── iorintsockfact.idl │ ├── legacy │ │ ├── activation.idl │ │ ├── clientinterceptor.idl │ │ ├── clientrequestinfo.idl │ │ ├── corba │ │ │ ├── invocation │ │ │ │ └── hello.idl │ │ │ └── tcpreadtimeout │ │ │ │ └── idlI.idl │ │ ├── exceptiondetailsc.idl │ │ ├── hcks.idl │ │ ├── islocal.idl │ │ ├── legacybootstrapserver.idl │ │ ├── oneway.idl │ │ └── orbinit.idl │ ├── mantis_m4764130_SendingContext.idl │ ├── multiorb_policy.idl │ ├── ort-iorinterceptor.idl │ ├── pi │ │ └── serverinterceptor │ │ │ └── serverinterceptor.idl │ ├── poaandequals_wombat.idl │ ├── poacallback1.idl │ ├── poacallback2.idl │ ├── poamanager.idl │ ├── poatest.idl │ ├── purgecalls.idl │ ├── serverrequestinfo.idl │ ├── serviceexample.idl │ ├── systemexceptions.idl │ └── unarrow.idl │ └── java │ ├── com │ └── sun │ │ └── corba │ │ └── ee │ │ ├── impl │ │ ├── activation │ │ │ ├── CommandHandler.java │ │ │ ├── NameServiceStartThread.java │ │ │ ├── ORBConfiguratorPersistentImpl.java │ │ │ ├── ORBD.java │ │ │ ├── ProcessMonitorThread.java │ │ │ ├── RepositoryImpl.java │ │ │ ├── ServerMain.java │ │ │ ├── ServerManagerImpl.java │ │ │ ├── ServerTableEntry.java │ │ │ └── ServerTool.java │ │ └── naming │ │ │ └── pcosnaming │ │ │ ├── InternalBindingKey.java │ │ │ ├── InternalBindingValue.java │ │ │ ├── NameServer.java │ │ │ ├── NameService.java │ │ │ ├── NamingContextImpl.java │ │ │ ├── PersistentBindingIterator.java │ │ │ └── ServantManagerImpl.java │ │ ├── internal │ │ ├── CosNaming │ │ │ └── BootstrapServer.java │ │ ├── Interceptors │ │ │ └── PIORB.java │ │ ├── POA │ │ │ └── POAORB.java │ │ ├── corba │ │ │ └── ORBSingleton.java │ │ └── iiop │ │ │ └── ORB.java │ │ └── spi │ │ └── JndiConstants.java │ ├── corba │ ├── Client.java │ ├── LegacyBootstrapServerTest.java │ ├── Server.java │ ├── adapteractivator │ │ ├── AdapterActivator.java │ │ ├── AdapterActivatorClient.java │ │ ├── AdapterActivatorServer.java │ │ └── HelloImpl.java │ ├── codeset │ │ ├── CharGenerator.java │ │ ├── Client.java │ │ ├── CodeSetTest.java │ │ ├── CustomMarshaledValueImpl.java │ │ └── Server.java │ ├── connectintercept_1_4 │ │ ├── CRI.java │ │ ├── CRIOrdered.java │ │ ├── Client.java │ │ ├── ClientORBInitializer.java │ │ ├── Common.java │ │ ├── ConnectIntercept_1_4Test.java │ │ ├── MyPIORB.java │ │ ├── MySocketFactory.java │ │ ├── ORBDBadServerIdHandler.java │ │ ├── ORBDListenPortsComponent.java │ │ ├── README.txt │ │ ├── SRI.java │ │ ├── SRIOrdered.java │ │ ├── ServerCommon.java │ │ ├── ServerIORInterceptor.java │ │ ├── ServerORBInitializer.java │ │ ├── ServerPersistent.java │ │ ├── ServerTransient.java │ │ └── TODO.txt │ ├── exceptiondetailsc │ │ ├── Client.java │ │ ├── ColocatedClientServer.java │ │ ├── ExceptionDetailSCTest.java │ │ ├── Server.java │ │ ├── idlIServantConnect.java │ │ ├── idlIServantPOA.java │ │ ├── rmiiException.java │ │ ├── rmiiI.java │ │ ├── rmiiIServantConnect.java │ │ └── rmiiIServantPOA.java │ ├── folb_8_1 │ │ ├── Client.java │ │ ├── ClientForTiming.java │ │ ├── ClientForTiming_Fs_F_C.java │ │ ├── ClientForTiming_Fs_F_NoC.java │ │ ├── ClientForTiming_Fs_NoF_C.java │ │ ├── ClientForTiming_Fs_NoF_NoC.java │ │ ├── ClientForTiming_NoFs_NoF_NoC.java │ │ ├── ClientTwoRefs.java │ │ ├── ClientWithSticky.java │ │ ├── ColocatedCS.java │ │ ├── ColocatedCSWithSticky.java │ │ ├── ColocatedClientTwoRefs.java │ │ ├── Common.java │ │ ├── FolbTest.java │ │ ├── IIOPPrimaryToContactInfoImpl.java │ │ ├── IORInterceptorImpl.java │ │ ├── IORToSocketInfoImpl.java │ │ ├── README.txt │ │ ├── Server.java │ │ ├── SocketFactoryImpl.java │ │ ├── ZeroPortServer1.java │ │ └── ZeroPortServer2.java │ ├── framework │ │ ├── CORBATest.java │ │ ├── CORBAUtil.java │ │ ├── Compiler.java │ │ ├── Controller.java │ │ ├── ControllerAdapter.java │ │ ├── DebugExec.java │ │ ├── EmmaControl.java │ │ ├── ExternalExec.java │ │ ├── FileOutputDecorator.java │ │ ├── GetID.java │ │ ├── IDLCompiler.java │ │ ├── InternalExec.java │ │ ├── InternalProcess.java │ │ ├── JavaCompiler.java │ │ ├── Loader.java │ │ ├── MethodEvent.java │ │ ├── MethodEventListener.java │ │ ├── ODebugExec.java │ │ ├── Options.java │ │ ├── PRO.java │ │ ├── Port.java │ │ ├── Post.java │ │ ├── Pre.java │ │ ├── ProxyInterceptor.java │ │ ├── RDebugExec.java │ │ ├── RMICompiler.java │ │ ├── RTMConstants.java │ │ ├── RTMUtilities.java │ │ ├── ReflectiveExec.java │ │ ├── ReflectiveWrapper.java │ │ ├── ResolveNS.java │ │ ├── TestngRunner.java │ │ ├── ThreadExec.java │ │ ├── ThreadProcess.java │ │ ├── TimedTest.java │ │ ├── TraceAccumulator.java │ │ ├── TraceElement.java │ │ ├── package.html │ │ └── statusU.java │ ├── fwddecl │ │ ├── Client.java │ │ └── ForwardDeclTest.java │ ├── giopheaderpadding │ │ ├── Client.java │ │ ├── ColocatedClientServer.java │ │ ├── GIOPHeaderPaddingTest.java │ │ ├── ServantLocator.java │ │ ├── Server.java │ │ ├── rmiiI.java │ │ └── rmiiIServantPOA.java │ ├── hcks │ │ ├── C.java │ │ ├── Client.java │ │ ├── ClientGrow.java │ │ ├── Client_1_1.java │ │ ├── ColocatedClientServer.java │ │ ├── ErrorAccumulator.java │ │ ├── HcksTest.java │ │ ├── MyInterceptor.java │ │ ├── MyORBInitializer.java │ │ ├── MyPOAORB.java │ │ ├── MyServantActivator.java │ │ ├── MyServantLocator.java │ │ ├── NonSerializableObject.java │ │ ├── README.txt │ │ ├── SendRecursiveTypePOAServant.java │ │ ├── SerializableObject.java │ │ ├── Server.java │ │ ├── ServerGrow.java │ │ ├── Server_1_1.java │ │ ├── SsPicInterceptor.java │ │ ├── U.java │ │ ├── idlControllerStaticServant.java │ │ ├── idlDeprecatedDynamicServant.java │ │ ├── idlDynInvokeHelper.java │ │ ├── idlDynamicServant.java │ │ ├── idlHEADERIServant.java │ │ ├── idlPOAServant.java │ │ ├── idlSAIServant.java │ │ ├── idlSLIServant.java │ │ ├── idlStaticServant.java │ │ ├── idlValueTypeAImpl.java │ │ ├── idlValueTypeBImpl.java │ │ ├── idlValueTypeCImpl.java │ │ ├── idlValueTypeDImpl.java │ │ ├── idlValueTypeEImpl.java │ │ ├── rmiiAttributesI.java │ │ ├── rmiiAttributesIServantPOA.java │ │ ├── rmiiI.java │ │ ├── rmiiIServant.java │ │ ├── rmiiIServantPOA.java │ │ └── rmiiMyException.java │ ├── invocation │ │ ├── Client.java │ │ └── InvocationTest.java │ ├── iorintsockfact │ │ ├── Client.java │ │ ├── Common.java │ │ ├── ExampleMakefile │ │ ├── IORInterceptor.java │ │ ├── IorIntSockFactTest.java │ │ ├── README.txt │ │ ├── Server.java │ │ ├── ServerORBInitializer.java │ │ └── SocketFactory.java │ ├── islocal │ │ ├── Client.java │ │ ├── ColocatedClientServer.java │ │ ├── CustomClassLoader.java │ │ ├── IsLocalTest.java │ │ ├── MyServantLocator.java │ │ ├── Server.java │ │ ├── idlIServantConnect.java │ │ ├── idlIServantPOA.java │ │ ├── rmiiI.java │ │ ├── rmiiIServantConnect.java │ │ └── rmiiIServantPOA.java │ ├── multiorb │ │ ├── MultiORBTest.java │ │ ├── policy2Client.java │ │ └── policy2Server.java │ ├── oneway │ │ ├── OneWayTest.java │ │ ├── helloClient.java │ │ └── helloServer.java │ ├── poaandequals │ │ ├── POAAndEquals.java │ │ ├── WombatClient.java │ │ ├── WombatImpl.java │ │ └── WombatServer.java │ ├── poacallback │ │ ├── Client.java │ │ ├── POACallbackTest.java │ │ ├── Server.java │ │ ├── idlI1Servant.java │ │ ├── idlI1ServantLocator.java │ │ ├── idlI2Servant.java │ │ ├── idlI2ServantLocator.java │ │ └── readme.txt │ ├── poamanager │ │ ├── FactoryImpl.java │ │ ├── HelloClient.java │ │ ├── HelloImpl.java │ │ ├── HelloServer.java │ │ ├── POAManagerTest.java │ │ └── Utility.java │ ├── poapolicies │ │ ├── BasicObjectFactoryImpl.java │ │ ├── FactoryForRetainAndUseActiveMapOnly.java │ │ ├── FactoryForRetainAndUseServantManager.java │ │ ├── HelloClient.java │ │ ├── HelloImpl.java │ │ ├── HelloServer.java │ │ ├── ObjectFactoryUsingServantManager.java │ │ ├── POAFactory.java │ │ ├── POAPoliciesTest.java │ │ ├── ServantActivatorImpl.java │ │ └── Utility.java │ ├── poatest │ │ ├── OneWayTest.java │ │ ├── helloClient.java │ │ └── helloServer.java │ ├── preinvokepostinvoke │ │ ├── Interface.java │ │ ├── MyServant.java │ │ ├── MyServantLocator.java │ │ ├── PreInvokePostInvokeTest.java │ │ ├── TestAssert.java │ │ └── readme.txt │ ├── purgecalls │ │ ├── Client.java │ │ ├── ClientInterceptor.java │ │ ├── ClientORBInitializer.java │ │ ├── PurgecallsTest.java │ │ ├── Server.java │ │ └── ServerSideServant.java │ ├── repid │ │ ├── Client.java │ │ └── RepIdTest.java │ ├── requestpartitioning │ │ ├── Client.java │ │ ├── RequestPartitioningTest.java │ │ ├── Server.java │ │ ├── TestThreadPoolManager.java │ │ └── TesterImpl.java │ ├── rmipoacounter │ │ ├── RMIPOACounterTest.java │ │ ├── counterClient.java │ │ ├── counterIF.java │ │ └── counterImpl.java │ ├── rogueclient │ │ ├── Client.java │ │ ├── RogueClient.java │ │ ├── RogueClientTest.java │ │ ├── Server.java │ │ ├── Tester.java │ │ └── TesterImpl.java │ ├── systemexceptions │ │ ├── Client.java │ │ ├── ColocatedClientServer.java │ │ ├── Server.java │ │ └── SystemExceptionsTest.java │ └── unarrow │ │ ├── Client.java │ │ ├── Server.java │ │ └── UncheckedNarrowTest.java │ ├── javax │ └── rmi │ │ ├── CORBA │ │ └── serialization │ │ │ ├── BitSet.java │ │ │ ├── BudgetSummary.java │ │ │ ├── Cloneable.java │ │ │ ├── ComplexTestObjectFour.java │ │ │ ├── ComplexTestObjectOne.java │ │ │ ├── ComplexTestObjectThree.java │ │ │ ├── ComplexTestObjectTwo.java │ │ │ ├── ComplexTestObjectTwoDelta.java │ │ │ ├── ComplexTestObjectTwoSubclass.java │ │ │ ├── ComplexTestObjectTwoSubclassDefaults.java │ │ │ ├── ComplexTestObjectXXX.java │ │ │ ├── Date.java │ │ │ ├── DateDefaultFactory.java │ │ │ ├── DateHelper.java │ │ │ ├── DateImpl.java │ │ │ ├── DateValueFactory.java │ │ │ ├── EmptyTestObject.java │ │ │ ├── Graph.java │ │ │ ├── IDLValue.java │ │ │ ├── IDLValueHelper.java │ │ │ ├── IIOPPerformance.java │ │ │ ├── IsSerializable.java │ │ │ ├── JRMPPerformance.java │ │ │ ├── NotSerializable.java │ │ │ ├── NotSerializableChild.java │ │ │ ├── OBVTestObjectCustom.java │ │ │ ├── OBVTestObjectCustomDefaultFactory.java │ │ │ ├── OBVTestObjectCustomHelper.java │ │ │ ├── OBVTestObjectCustomImpl.java │ │ │ ├── OBVTestObjectOne.java │ │ │ ├── OBVTestObjectOneDefaultFactory.java │ │ │ ├── OBVTestObjectOneHelper.java │ │ │ ├── OBVTestObjectOneImpl.java │ │ │ ├── SerializationTest.java │ │ │ ├── Stock.java │ │ │ ├── StockDefaultFactory.java │ │ │ ├── StockHelper.java │ │ │ ├── StockImpl.java │ │ │ ├── StockValueFactory.java │ │ │ ├── TestOBV.java │ │ │ ├── TestOBV2.java │ │ │ └── seq1_StockHelper.java │ │ ├── PortableContext.java │ │ └── download │ │ ├── ContainerOfBadVal.java │ │ ├── IIOPTestSerializable.java │ │ ├── SecurityManager.java │ │ ├── Servant.java │ │ ├── ServantImpl.java │ │ ├── TheBadException.java │ │ ├── TheClient.java │ │ ├── TheErrorValue.java │ │ ├── TheServer.java │ │ ├── TheTest.java │ │ ├── TheValue.java │ │ └── TheValueImpl.java │ ├── mantis │ └── m4764130 │ │ ├── Client.java │ │ ├── Interceptor.java │ │ ├── SendingContextTest.java │ │ └── Server.java │ ├── pi │ ├── clientinterceptor │ │ ├── ClientCommon.java │ │ ├── ClientInterceptorTest.java │ │ ├── DIIPOAClient.java │ │ ├── DIIPOALocalClient.java │ │ ├── DIIRMILocalClient.java │ │ ├── OldRMILocalServer.java │ │ ├── OldRMIServer.java │ │ ├── POAClient.java │ │ ├── POALocalClient.java │ │ ├── POALocalServer.java │ │ ├── POAServer.java │ │ ├── RMIClient.java │ │ ├── RMILocalClient.java │ │ ├── RMILocalServer.java │ │ ├── RMIServer.java │ │ ├── SampleClientRequestInterceptor.java │ │ ├── TestInitializer.java │ │ ├── helloDIIClientStub.java │ │ ├── helloDelegate.java │ │ ├── helloIF.java │ │ ├── helloOldRMIIIOP.java │ │ ├── helloRMIIIOP.java │ │ └── helloServant.java │ ├── clientrequestinfo │ │ ├── AttributesValidStrategy.java │ │ ├── ClientCommon.java │ │ ├── ClientRequestInfoTest.java │ │ ├── DIIPOAClient.java │ │ ├── DIIPOALocalClient.java │ │ ├── DIIRMILocalClient.java │ │ ├── DynamicStrategy.java │ │ ├── EffectiveProfileStrategy.java │ │ ├── ExceptionStrategy.java │ │ ├── ForwardReferenceStrategy.java │ │ ├── InterceptorStrategy.java │ │ ├── InvokeDynamic.java │ │ ├── InvokeExceptions.java │ │ ├── InvokeOneWay.java │ │ ├── InvokeRecursive.java │ │ ├── InvokeStrategy.java │ │ ├── InvokeVisitAll.java │ │ ├── InvokeVisitAllForward.java │ │ ├── OldRMILocalServer.java │ │ ├── OldRMIServer.java │ │ ├── OneWayStrategy.java │ │ ├── POAClient.java │ │ ├── POALocalClient.java │ │ ├── POALocalServer.java │ │ ├── POAServer.java │ │ ├── RMIClient.java │ │ ├── RMILocalClient.java │ │ ├── RMILocalServer.java │ │ ├── RMIServer.java │ │ ├── RequestId1Strategy.java │ │ ├── RequestId2Strategy.java │ │ ├── SampleClientRequestInterceptor.java │ │ ├── ServiceContextStrategy.java │ │ ├── TestInitializer.java │ │ ├── helloDIIClientStub.java │ │ ├── helloDelegate.java │ │ ├── helloIF.java │ │ ├── helloOldRMIIIOP.java │ │ ├── helloRMIIIOP.java │ │ └── helloServant.java │ ├── iorinterceptor │ │ ├── Client.java │ │ ├── IORInterceptorTest.java │ │ ├── NPEIORInterceptor.java │ │ ├── PolicyFactoryHundred.java │ │ ├── PolicyHundred.java │ │ ├── SampleIORInterceptor.java │ │ ├── Server.java │ │ ├── ServerTestInitializer.java │ │ └── SimpleServant.java │ ├── orbinit │ │ ├── ClientCommon.java │ │ ├── ClientTestInitializer.java │ │ ├── ORBInitTest.java │ │ ├── PropsClient.java │ │ ├── SampleClientRequestInterceptor.java │ │ ├── SampleIORInterceptor.java │ │ ├── SampleObjectImpl.java │ │ ├── SampleServerRequestInterceptor.java │ │ └── SystemClient.java │ ├── ort │ │ ├── Constants.java │ │ ├── DelayServant.java │ │ ├── ORTStateChangeEvaluator.java │ │ ├── ORTTest.java │ │ ├── Readme.txt │ │ ├── SampleIORInterceptor.java │ │ ├── Server.java │ │ └── ServerTestInitializer.java │ ├── serverinterceptor │ │ ├── ClientCommon.java │ │ ├── DSIImpl.java │ │ ├── DSIPOALocalServer.java │ │ ├── DSIPOARemoteServer.java │ │ ├── DSIPOAServer.java │ │ ├── DSIRMIClient.java │ │ ├── DSIRMILocalClient.java │ │ ├── DSIRMILocalServer.java │ │ ├── DSIRMIRemoteClient.java │ │ ├── DSIRMIRemoteServer.java │ │ ├── DSIRMIServer.java │ │ ├── POAClient.java │ │ ├── POALocalClient.java │ │ ├── POALocalServer.java │ │ ├── POARemoteClient.java │ │ ├── POARemoteServer.java │ │ ├── POAServer.java │ │ ├── RMIClient.java │ │ ├── RMILocalClient.java │ │ ├── RMILocalServer.java │ │ ├── RMIRemoteClient.java │ │ ├── RMIRemoteServer.java │ │ ├── RMIServer.java │ │ ├── SampleServerRequestInterceptor.java │ │ ├── ServerCommon.java │ │ ├── ServerInterceptorTest.java │ │ ├── TestInitializer.java │ │ ├── TestServantLocator.java │ │ ├── helloDSIDeprecatedServant.java │ │ ├── helloDSIServant.java │ │ ├── helloDelegate.java │ │ ├── helloIF.java │ │ ├── helloRMIIIOP.java │ │ └── helloServant.java │ ├── serverrequestinfo │ │ ├── AdapterIdStrategy.java │ │ ├── AttributesValidStrategy.java │ │ ├── ClientCommon.java │ │ ├── DSIImpl.java │ │ ├── DSIPOALocalServer.java │ │ ├── DSIPOARemoteServer.java │ │ ├── DSIRMIClient.java │ │ ├── DSIRMILocalClient.java │ │ ├── DSIRMILocalServer.java │ │ ├── DSIRMIRemoteClient.java │ │ ├── DSIRMIRemoteServer.java │ │ ├── DSIRMIServer.java │ │ ├── ExceptionStrategy.java │ │ ├── ForwardReferenceStrategy.java │ │ ├── GetServerPolicyStrategy.java │ │ ├── InterceptorStrategy.java │ │ ├── InvokeExceptions.java │ │ ├── InvokeOneWay.java │ │ ├── InvokeStrategy.java │ │ ├── InvokeVisitAll.java │ │ ├── InvokeVisitAllForward.java │ │ ├── OneWayStrategy.java │ │ ├── POAClient.java │ │ ├── POALocalClient.java │ │ ├── POALocalServer.java │ │ ├── POARemoteClient.java │ │ ├── POARemoteServer.java │ │ ├── POAServer.java │ │ ├── PolicyFactoryHundred.java │ │ ├── PolicyHundred.java │ │ ├── RMIClient.java │ │ ├── RMILocalClient.java │ │ ├── RMILocalServer.java │ │ ├── RMIRemoteClient.java │ │ ├── RMIRemoteServer.java │ │ ├── RMIServer.java │ │ ├── RequestId1Strategy.java │ │ ├── RequestInfoStackStrategy.java │ │ ├── SampleServerRequestInterceptor.java │ │ ├── ServerCommon.java │ │ ├── ServerRequestInfoTest.java │ │ ├── ServiceContextStrategy.java │ │ ├── TestInitializer.java │ │ ├── helloDSIDeprecatedServant.java │ │ ├── helloDSIServant.java │ │ ├── helloDelegate.java │ │ ├── helloIF.java │ │ ├── helloRMIIIOP.java │ │ └── helloServant.java │ └── serviceexample │ │ ├── AServiceIORInterceptor.java │ │ ├── AServiceImpl.java │ │ ├── AServiceInterceptor.java │ │ ├── AServiceORBInitializer.java │ │ ├── ArbitraryObjectImpl.java │ │ ├── Client.java │ │ ├── ColocatedServers.java │ │ ├── LoggingServiceClientInterceptor.java │ │ ├── LoggingServiceClientORBInitializer.java │ │ ├── LoggingServiceImpl.java │ │ ├── LoggingServiceServerInterceptor.java │ │ ├── LoggingServiceServerORBInitializer.java │ │ ├── Makefile.example │ │ ├── README.txt │ │ ├── ServiceExampleTest.java │ │ └── doc │ │ ├── AService.vthought │ │ ├── LoggingService.vthought │ │ ├── LoggingServiceColocated.vthought │ │ └── README.txt │ ├── rmic │ ├── AbstractObject.java │ ├── AppletServer.java │ ├── Base.java │ ├── BaseImpl.java │ ├── CORBAUserException.java │ ├── CORBAUserException2.java │ ├── CORBAUserException2Helper.java │ ├── CORBAUserExceptionHelper.java │ ├── Cat.java │ ├── CharValue.java │ ├── ClassEnumerator.java │ ├── DefaultPackage.java │ ├── DefaultPackageImpl.java │ ├── DerivedImpl.java │ ├── Diamond.java │ ├── DiamondServer.java │ ├── EmptyInterface.java │ ├── Hello.java │ ├── HelloException.java │ ├── HelloImpl.java │ ├── HelloTest.java │ ├── Hi.java │ ├── HiServant.java │ ├── IDLEntityException.java │ ├── IDLEntityValue.java │ ├── IDLReferenceTest.java │ ├── IDLTest.java │ ├── InnerTest.java │ ├── InvalidNC.java │ ├── Left.java │ ├── LocalHello.java │ ├── LocalHelloServant.java │ ├── LocalStubTest.java │ ├── MangleMethods.java │ ├── MangleMethodsFail1.java │ ├── MangleMethodsFail2.java │ ├── MangleMethodsFail3.java │ ├── MapType.java │ ├── MethodOverload1.java │ ├── NCIOException.java │ ├── NCRemoteException.java │ ├── NCRuntimeException.java │ ├── NoMethods.java │ ├── NoMethodsImpl.java │ ├── NonRemoteOuterRemoteInner.java │ ├── ObjectByValue.java │ ├── OnlyRemoteServant.java │ ├── ParseTest.java │ ├── PassIDLEntityException.java │ ├── PassImplInterface.java │ ├── PassImplValue.java │ ├── PrivateMethodCollision.java │ ├── RMICTest.java │ ├── RemoteObject.java │ ├── RemoteObjectServer.java │ ├── RemoteOuterNonRemoteInner.java │ ├── RemoteOuterRemoteInner.java │ ├── ReservedMethod.java │ ├── ReturnImplInterface.java │ ├── ReturnVector.java │ ├── Right.java │ ├── SRInner.java │ ├── Simple.java │ ├── SimpleServant.java │ ├── StaticStringsHashTest.java │ ├── StressParseIIOP.java │ ├── StubReferenceTest.java │ ├── StubTest.java │ ├── SwapMember.java │ ├── TestEnv.java │ ├── TestException.java │ ├── TestExecutor.java │ ├── ThrowCORBAUserExServant.java │ ├── ThrowCORBAUserException.java │ ├── ThrowNCException.java │ ├── ThrowNCIOException.java │ ├── Typedef.java │ ├── UID.java │ ├── ValueObject.java │ └── ValueWithInvalidNC.java │ └── test │ ├── Alarm.java │ ├── AlarmHandler.java │ ├── ClassUtils.java │ ├── Debug.java │ ├── DistributedSet.java │ ├── DistributedSetMonitor.java │ ├── DistributedSetNotifier.java │ ├── Hello.java │ ├── HelloClient.java │ ├── HelloServant.java │ ├── InstallTest.java │ ├── ProcessMonitor.java │ ├── RemoteTest.java │ ├── RemoteTestExample.java │ ├── ServantContext.java │ ├── ServantManager.java │ ├── ServantManagerImpl.java │ ├── ShutdownHook.java │ ├── StartRMIRegistry.java │ ├── StreamReader.java │ ├── Test.java │ ├── Util.java │ └── WebServer.java ├── idl ├── ir.idl ├── orb.idl └── rt.idl ├── idlj ├── README ├── pom.xml └── src │ ├── main │ ├── java │ │ ├── com │ │ │ └── sun │ │ │ │ └── tools │ │ │ │ └── corba │ │ │ │ └── ee │ │ │ │ └── idl │ │ │ │ ├── Arguments.java │ │ │ │ ├── AttributeEntry.java │ │ │ │ ├── AttributeGen.java │ │ │ │ ├── Comment.java │ │ │ │ ├── Compile.java │ │ │ │ ├── ConstEntry.java │ │ │ │ ├── ConstGen.java │ │ │ │ ├── DefaultSymtabFactory.java │ │ │ │ ├── EnumEntry.java │ │ │ │ ├── EnumGen.java │ │ │ │ ├── ExceptionEntry.java │ │ │ │ ├── ExceptionGen.java │ │ │ │ ├── Factories.java │ │ │ │ ├── ForwardEntry.java │ │ │ │ ├── ForwardGen.java │ │ │ │ ├── ForwardValueEntry.java │ │ │ │ ├── ForwardValueGen.java │ │ │ │ ├── GenFactory.java │ │ │ │ ├── GenFileStream.java │ │ │ │ ├── Generator.java │ │ │ │ ├── IDLID.java │ │ │ │ ├── IncludeEntry.java │ │ │ │ ├── IncludeGen.java │ │ │ │ ├── InterfaceEntry.java │ │ │ │ ├── InterfaceGen.java │ │ │ │ ├── InterfaceState.java │ │ │ │ ├── InterfaceType.java │ │ │ │ ├── InvalidArgument.java │ │ │ │ ├── InvalidCharacter.java │ │ │ │ ├── MethodEntry.java │ │ │ │ ├── MethodGen.java │ │ │ │ ├── ModuleEntry.java │ │ │ │ ├── ModuleGen.java │ │ │ │ ├── NativeEntry.java │ │ │ │ ├── NativeGen.java │ │ │ │ ├── NoPragma.java │ │ │ │ ├── Noop.java │ │ │ │ ├── ParameterEntry.java │ │ │ │ ├── ParameterGen.java │ │ │ │ ├── ParseException.java │ │ │ │ ├── Parser.java │ │ │ │ ├── PragmaEntry.java │ │ │ │ ├── PragmaGen.java │ │ │ │ ├── PragmaHandler.java │ │ │ │ ├── Preprocessor.java │ │ │ │ ├── PrimitiveEntry.java │ │ │ │ ├── PrimitiveGen.java │ │ │ │ ├── RepositoryID.java │ │ │ │ ├── ResourceBundleUtil.java │ │ │ │ ├── Scanner.java │ │ │ │ ├── SequenceEntry.java │ │ │ │ ├── SequenceGen.java │ │ │ │ ├── StringEntry.java │ │ │ │ ├── StringGen.java │ │ │ │ ├── StructEntry.java │ │ │ │ ├── StructGen.java │ │ │ │ ├── SymtabEntry.java │ │ │ │ ├── SymtabFactory.java │ │ │ │ ├── Token.java │ │ │ │ ├── TokenBuffer.java │ │ │ │ ├── TypedefEntry.java │ │ │ │ ├── TypedefGen.java │ │ │ │ ├── UnionBranch.java │ │ │ │ ├── UnionEntry.java │ │ │ │ ├── UnionGen.java │ │ │ │ ├── Util.java │ │ │ │ ├── ValueBoxEntry.java │ │ │ │ ├── ValueBoxGen.java │ │ │ │ ├── ValueEntry.java │ │ │ │ ├── ValueGen.java │ │ │ │ ├── ValueRepositoryId.java │ │ │ │ ├── constExpr │ │ │ │ ├── And.java │ │ │ │ ├── BinaryExpr.java │ │ │ │ ├── BooleanAnd.java │ │ │ │ ├── BooleanNot.java │ │ │ │ ├── BooleanOr.java │ │ │ │ ├── DefaultExprFactory.java │ │ │ │ ├── Divide.java │ │ │ │ ├── Equal.java │ │ │ │ ├── EvaluationException.java │ │ │ │ ├── ExprFactory.java │ │ │ │ ├── Expression.java │ │ │ │ ├── GreaterEqual.java │ │ │ │ ├── GreaterThan.java │ │ │ │ ├── LessEqual.java │ │ │ │ ├── LessThan.java │ │ │ │ ├── Minus.java │ │ │ │ ├── Modulo.java │ │ │ │ ├── Negative.java │ │ │ │ ├── Not.java │ │ │ │ ├── NotEqual.java │ │ │ │ ├── Or.java │ │ │ │ ├── Plus.java │ │ │ │ ├── Positive.java │ │ │ │ ├── ShiftLeft.java │ │ │ │ ├── ShiftRight.java │ │ │ │ ├── Terminal.java │ │ │ │ ├── Times.java │ │ │ │ ├── UnaryExpr.java │ │ │ │ └── Xor.java │ │ │ │ ├── first.set │ │ │ │ ├── follow.set │ │ │ │ ├── grammar.idl │ │ │ │ ├── grammar3.idl │ │ │ │ ├── ir.idl │ │ │ │ ├── keywords.txt │ │ │ │ ├── orb.idl │ │ │ │ ├── som │ │ │ │ ├── cff │ │ │ │ │ ├── FileLocator.java │ │ │ │ │ └── Messages.java │ │ │ │ └── idlemit │ │ │ │ │ └── MetaPragma.java │ │ │ │ └── toJavaPortable │ │ │ │ ├── Arguments.java │ │ │ │ ├── AttributeGen.java │ │ │ │ ├── AttributeGen24.java │ │ │ │ ├── AuxGen.java │ │ │ │ ├── Compile.java │ │ │ │ ├── ConstGen.java │ │ │ │ ├── DefaultFactory.java │ │ │ │ ├── EnumGen.java │ │ │ │ ├── ExceptionGen.java │ │ │ │ ├── Factories.java │ │ │ │ ├── ForwardValueGen.java │ │ │ │ ├── GenFactory.java │ │ │ │ ├── Helper.java │ │ │ │ ├── Helper24.java │ │ │ │ ├── Holder.java │ │ │ │ ├── InterfaceGen.java │ │ │ │ ├── JavaGenerator.java │ │ │ │ ├── MethodGen.java │ │ │ │ ├── MethodGen24.java │ │ │ │ ├── MethodGenClone24.java │ │ │ │ ├── ModuleGen.java │ │ │ │ ├── NameModifier.java │ │ │ │ ├── NameModifierImpl.java │ │ │ │ ├── NativeGen.java │ │ │ │ ├── PrimitiveGen.java │ │ │ │ ├── SequenceGen.java │ │ │ │ ├── Skeleton.java │ │ │ │ ├── StringGen.java │ │ │ │ ├── StructGen.java │ │ │ │ ├── Stub.java │ │ │ │ ├── TCOffsets.java │ │ │ │ ├── TypedefGen.java │ │ │ │ ├── UnionGen.java │ │ │ │ ├── Util.java │ │ │ │ ├── ValueBoxGen.java │ │ │ │ ├── ValueBoxGen24.java │ │ │ │ ├── ValueFactory.java │ │ │ │ ├── ValueGen.java │ │ │ │ └── ValueGen24.java │ │ └── module-info.java │ └── resources │ │ ├── com │ │ └── sun │ │ │ └── tools │ │ │ └── corba │ │ │ └── ee │ │ │ └── idl │ │ │ ├── idl.properties │ │ │ ├── idl_ja.properties │ │ │ └── toJavaPortable │ │ │ ├── toJavaPortable.properties │ │ │ └── toJavaPortable_ja.properties │ │ └── includes │ │ ├── ir.idl │ │ └── orb.idl │ └── test │ ├── idl │ └── CorbaServerTest.idl │ ├── java │ └── com │ │ └── sun │ │ └── tools │ │ └── corba │ │ └── ee │ │ └── idl │ │ ├── UtilTest.java │ │ └── toJavaPortable │ │ ├── IdljGenerationTest.java │ │ └── TestUtils.java │ └── masters │ ├── README │ ├── ir │ └── org │ │ └── omg │ │ └── CORBA │ │ ├── AliasDef.java │ │ ├── AliasDefHelper.java │ │ ├── AliasDefHolder.java │ │ ├── AliasDefOperations.java │ │ ├── ArrayDef.java │ │ ├── ArrayDefHelper.java │ │ ├── ArrayDefHolder.java │ │ ├── ArrayDefOperations.java │ │ ├── AttrDescriptionSeqHelper.java │ │ ├── AttrDescriptionSeqHolder.java │ │ ├── AttributeDef.java │ │ ├── AttributeDefHelper.java │ │ ├── AttributeDefHolder.java │ │ ├── AttributeDefOperations.java │ │ ├── AttributeDescription.java │ │ ├── AttributeDescriptionHelper.java │ │ ├── AttributeDescriptionHolder.java │ │ ├── AttributeMode.java │ │ ├── AttributeModeHelper.java │ │ ├── AttributeModeHolder.java │ │ ├── ConstantDef.java │ │ ├── ConstantDefHelper.java │ │ ├── ConstantDefHolder.java │ │ ├── ConstantDefOperations.java │ │ ├── ConstantDescription.java │ │ ├── ConstantDescriptionHelper.java │ │ ├── ConstantDescriptionHolder.java │ │ ├── Contained.java │ │ ├── ContainedHelper.java │ │ ├── ContainedHolder.java │ │ ├── ContainedOperations.java │ │ ├── ContainedPackage │ │ ├── Description.java │ │ ├── DescriptionHelper.java │ │ └── DescriptionHolder.java │ │ ├── ContainedSeqHelper.java │ │ ├── ContainedSeqHolder.java │ │ ├── Container.java │ │ ├── ContainerHelper.java │ │ ├── ContainerHolder.java │ │ ├── ContainerOperations.java │ │ ├── ContainerPackage │ │ ├── Description.java │ │ ├── DescriptionHelper.java │ │ ├── DescriptionHolder.java │ │ ├── DescriptionSeqHelper.java │ │ └── DescriptionSeqHolder.java │ │ ├── ContextIdSeqHelper.java │ │ ├── ContextIdSeqHolder.java │ │ ├── ContextIdentifierHelper.java │ │ ├── DefinitionKind.java │ │ ├── DefinitionKindHelper.java │ │ ├── DefinitionKindHolder.java │ │ ├── EnumDef.java │ │ ├── EnumDefHelper.java │ │ ├── EnumDefHolder.java │ │ ├── EnumDefOperations.java │ │ ├── EnumMemberSeqHelper.java │ │ ├── EnumMemberSeqHolder.java │ │ ├── ExcDescriptionSeqHelper.java │ │ ├── ExcDescriptionSeqHolder.java │ │ ├── ExceptionDef.java │ │ ├── ExceptionDefHelper.java │ │ ├── ExceptionDefHolder.java │ │ ├── ExceptionDefOperations.java │ │ ├── ExceptionDefSeqHelper.java │ │ ├── ExceptionDefSeqHolder.java │ │ ├── ExceptionDescription.java │ │ ├── ExceptionDescriptionHelper.java │ │ ├── ExceptionDescriptionHolder.java │ │ ├── IDLType.java │ │ ├── IDLTypeHelper.java │ │ ├── IDLTypeHolder.java │ │ ├── IDLTypeOperations.java │ │ ├── IRObject.java │ │ ├── IRObjectHelper.java │ │ ├── IRObjectHolder.java │ │ ├── IRObjectOperations.java │ │ ├── IdentifierHelper.java │ │ ├── Initializer.java │ │ ├── InitializerHelper.java │ │ ├── InitializerHolder.java │ │ ├── InitializerSeqHelper.java │ │ ├── InitializerSeqHolder.java │ │ ├── InterfaceDef.java │ │ ├── InterfaceDefHelper.java │ │ ├── InterfaceDefHolder.java │ │ ├── InterfaceDefOperations.java │ │ ├── InterfaceDefPackage │ │ ├── FullInterfaceDescription.java │ │ ├── FullInterfaceDescriptionHelper.java │ │ └── FullInterfaceDescriptionHolder.java │ │ ├── InterfaceDefSeqHelper.java │ │ ├── InterfaceDefSeqHolder.java │ │ ├── InterfaceDescription.java │ │ ├── InterfaceDescriptionHelper.java │ │ ├── InterfaceDescriptionHolder.java │ │ ├── ModuleDef.java │ │ ├── ModuleDefHelper.java │ │ ├── ModuleDefHolder.java │ │ ├── ModuleDefOperations.java │ │ ├── ModuleDescription.java │ │ ├── ModuleDescriptionHelper.java │ │ ├── ModuleDescriptionHolder.java │ │ ├── NativeDef.java │ │ ├── NativeDefHelper.java │ │ ├── NativeDefHolder.java │ │ ├── NativeDefOperations.java │ │ ├── OpDescriptionSeqHelper.java │ │ ├── OpDescriptionSeqHolder.java │ │ ├── OperationDef.java │ │ ├── OperationDefHelper.java │ │ ├── OperationDefHolder.java │ │ ├── OperationDefOperations.java │ │ ├── OperationDescription.java │ │ ├── OperationDescriptionHelper.java │ │ ├── OperationDescriptionHolder.java │ │ ├── OperationMode.java │ │ ├── OperationModeHelper.java │ │ ├── OperationModeHolder.java │ │ ├── PRIVATE_MEMBER.java │ │ ├── PUBLIC_MEMBER.java │ │ ├── ParDescriptionSeqHelper.java │ │ ├── ParDescriptionSeqHolder.java │ │ ├── ParameterDescription.java │ │ ├── ParameterDescriptionHelper.java │ │ ├── ParameterDescriptionHolder.java │ │ ├── ParameterMode.java │ │ ├── ParameterModeHelper.java │ │ ├── ParameterModeHolder.java │ │ ├── PrimitiveDef.java │ │ ├── PrimitiveDefHelper.java │ │ ├── PrimitiveDefHolder.java │ │ ├── PrimitiveDefOperations.java │ │ ├── PrimitiveKind.java │ │ ├── PrimitiveKindHelper.java │ │ ├── PrimitiveKindHolder.java │ │ ├── Repository.java │ │ ├── RepositoryHelper.java │ │ ├── RepositoryHolder.java │ │ ├── RepositoryIdHelper.java │ │ ├── RepositoryIdSeqHelper.java │ │ ├── RepositoryIdSeqHolder.java │ │ ├── RepositoryOperations.java │ │ ├── ScopedNameHelper.java │ │ ├── SequenceDef.java │ │ ├── SequenceDefHelper.java │ │ ├── SequenceDefHolder.java │ │ ├── SequenceDefOperations.java │ │ ├── StringDef.java │ │ ├── StringDefHelper.java │ │ ├── StringDefHolder.java │ │ ├── StringDefOperations.java │ │ ├── StructDef.java │ │ ├── StructDefHelper.java │ │ ├── StructDefHolder.java │ │ ├── StructDefOperations.java │ │ ├── StructMember.java │ │ ├── StructMemberHelper.java │ │ ├── StructMemberHolder.java │ │ ├── StructMemberSeqHelper.java │ │ ├── StructMemberSeqHolder.java │ │ ├── TypeDescription.java │ │ ├── TypeDescriptionHelper.java │ │ ├── TypeDescriptionHolder.java │ │ ├── TypedefDef.java │ │ ├── TypedefDefHelper.java │ │ ├── TypedefDefHolder.java │ │ ├── TypedefDefOperations.java │ │ ├── UnionDef.java │ │ ├── UnionDefHelper.java │ │ ├── UnionDefHolder.java │ │ ├── UnionDefOperations.java │ │ ├── UnionMember.java │ │ ├── UnionMemberHelper.java │ │ ├── UnionMemberHolder.java │ │ ├── UnionMemberSeqHelper.java │ │ ├── UnionMemberSeqHolder.java │ │ ├── ValueBoxDef.java │ │ ├── ValueBoxDefHelper.java │ │ ├── ValueBoxDefHolder.java │ │ ├── ValueBoxDefOperations.java │ │ ├── ValueDef.java │ │ ├── ValueDefHelper.java │ │ ├── ValueDefHolder.java │ │ ├── ValueDefOperations.java │ │ ├── ValueDefPackage │ │ ├── FullValueDescription.java │ │ ├── FullValueDescriptionHelper.java │ │ └── FullValueDescriptionHolder.java │ │ ├── ValueDefSeqHelper.java │ │ ├── ValueDefSeqHolder.java │ │ ├── ValueDescription.java │ │ ├── ValueDescriptionHelper.java │ │ ├── ValueDescriptionHolder.java │ │ ├── ValueMember.java │ │ ├── ValueMemberDef.java │ │ ├── ValueMemberDefHelper.java │ │ ├── ValueMemberDefHolder.java │ │ ├── ValueMemberDefOperations.java │ │ ├── ValueMemberHelper.java │ │ ├── ValueMemberHolder.java │ │ ├── ValueMemberSeqHelper.java │ │ ├── ValueMemberSeqHolder.java │ │ ├── VersionSpecHelper.java │ │ ├── VisibilityHelper.java │ │ ├── _AliasDefStub.java │ │ ├── _ArrayDefStub.java │ │ ├── _AttributeDefStub.java │ │ ├── _ConstantDefStub.java │ │ ├── _ContainedStub.java │ │ ├── _ContainerStub.java │ │ ├── _EnumDefStub.java │ │ ├── _ExceptionDefStub.java │ │ ├── _IDLTypeStub.java │ │ ├── _IRObjectStub.java │ │ ├── _InterfaceDefStub.java │ │ ├── _ModuleDefStub.java │ │ ├── _NativeDefStub.java │ │ ├── _OperationDefStub.java │ │ ├── _PrimitiveDefStub.java │ │ ├── _RepositoryStub.java │ │ ├── _SequenceDefStub.java │ │ ├── _StringDefStub.java │ │ ├── _StructDefStub.java │ │ ├── _TypedefDefStub.java │ │ ├── _UnionDefStub.java │ │ ├── _ValueBoxDefStub.java │ │ ├── _ValueDefStub.java │ │ └── _ValueMemberDefStub.java │ └── structures │ └── org │ └── glassfish │ └── idlj │ ├── AnyStruct.java │ ├── AnyStructHelper.java │ ├── AnyStructHolder.java │ ├── CORBAEnum.java │ ├── CORBAEnumHelper.java │ ├── CORBAEnumHolder.java │ ├── CORBASeqHelper.java │ ├── CORBASeqHolder.java │ ├── CORBAServerTest.java │ ├── CORBAServerTestHelper.java │ ├── CORBAServerTestHolder.java │ ├── CORBAServerTestOperations.java │ ├── CORBAServerTestPackage │ ├── AnException.java │ ├── AnExceptionHelper.java │ ├── AnExceptionHolder.java │ ├── MungedException.java │ ├── MungedExceptionHelper.java │ └── MungedExceptionHolder.java │ ├── CORBAStruct.java │ ├── CORBAStructHelper.java │ ├── CORBAStructHolder.java │ ├── CORBAUnion.java │ ├── CORBAUnionHelper.java │ ├── CORBAUnionHolder.java │ ├── DummyCORBAServer.java │ ├── DummyCORBAServerHelper.java │ ├── DummyCORBAServerHolder.java │ ├── DummyCORBAServerOperations.java │ ├── LongSeqHelper.java │ ├── LongSeqHolder.java │ ├── _CORBAServerTestImplBase.java │ ├── _CORBAServerTestStub.java │ ├── _DummyCORBAServerImplBase.java │ └── _DummyCORBAServerStub.java ├── iiop-folb-dev-test ├── OLD │ ├── createLog.1 │ ├── createconfig.sh │ ├── setup.sh │ ├── test-debug.sh │ ├── test-fo.sh │ ├── test-lb.sh │ └── testsac.sh ├── README ├── README.html ├── hudsonsetup.sh ├── logging.properties ├── pom.xml ├── run.sh ├── samplerun.sh ├── scripts │ ├── installgfejbsec │ ├── installgfnaming │ ├── installgforb │ ├── installgfv3 │ ├── installorb │ ├── kill │ └── killgf ├── setup.sh ├── test │ └── OrbFailOver │ │ ├── OrbFailOver-app-client │ │ ├── build.xml │ │ ├── nbproject │ │ │ ├── ant-deploy.xml │ │ │ ├── build-impl.xml │ │ │ ├── genfiles.properties │ │ │ ├── project.properties │ │ │ └── project.xml │ │ ├── src │ │ │ ├── conf │ │ │ │ ├── MANIFEST.MF │ │ │ │ └── application-client.xml │ │ │ └── java │ │ │ │ ├── argparser │ │ │ │ ├── ArgParser.java │ │ │ │ ├── CompositeInvocationHandler.java │ │ │ │ ├── CompositeInvocationHandlerImpl.java │ │ │ │ ├── DefaultValue.java │ │ │ │ ├── ElementParser.java │ │ │ │ ├── ElementParserImpl.java │ │ │ │ ├── Help.java │ │ │ │ ├── Pair.java │ │ │ │ ├── Separator.java │ │ │ │ └── UnaryFunction.java │ │ │ │ ├── glassfish │ │ │ │ ├── AdminCommand.java │ │ │ │ ├── GlassFishCluster.java │ │ │ │ ├── GlassFishInstallation.java │ │ │ │ ├── StandardPorts.java │ │ │ │ └── WeightedCircularIterator.java │ │ │ │ ├── orb │ │ │ │ └── folb │ │ │ │ │ ├── Location.java │ │ │ │ │ ├── LocationBean.java │ │ │ │ │ ├── LocationBeanRemote.java │ │ │ │ │ ├── StatefullLocationBean.java │ │ │ │ │ └── StatefullLocationBeanRemote.java │ │ │ │ ├── orbfailover │ │ │ │ └── Main.java │ │ │ │ └── testtools │ │ │ │ ├── Base.java │ │ │ │ ├── Post.java │ │ │ │ ├── Pre.java │ │ │ │ └── Test.java │ │ └── testtest │ │ ├── OrbFailOver-ejb │ │ ├── build.xml │ │ ├── nbproject │ │ │ ├── ant-deploy.xml │ │ │ ├── build-impl.xml │ │ │ ├── genfiles.properties │ │ │ ├── project.properties │ │ │ └── project.xml │ │ └── src │ │ │ ├── conf │ │ │ └── MANIFEST.MF │ │ │ └── java │ │ │ └── orb │ │ │ └── folb │ │ │ ├── Location.java │ │ │ ├── LocationBean.java │ │ │ ├── LocationBeanRemote.java │ │ │ ├── StatefullLocationBean.java │ │ │ └── StatefullLocationBeanRemote.java │ │ ├── build.xml │ │ ├── nbproject │ │ ├── ant-deploy.xml │ │ ├── build-impl.xml │ │ ├── genfiles.properties │ │ ├── project.properties │ │ └── project.xml │ │ └── src │ │ └── conf │ │ └── MANIFEST.MF └── testcommands.txt ├── internal-api ├── pom.xml └── src │ ├── main │ └── java │ │ ├── com │ │ └── sun │ │ │ └── corba │ │ │ └── ee │ │ │ ├── impl │ │ │ └── threadpool │ │ │ │ ├── Exceptions.java │ │ │ │ ├── ThreadPoolImpl.java │ │ │ │ ├── ThreadPoolManagerImpl.java │ │ │ │ ├── WorkQueueImpl.java │ │ │ │ └── WorkerThreadNotNeededException.java │ │ │ └── spi │ │ │ ├── logex │ │ │ └── stdcorba │ │ │ │ └── StandardLogger.java │ │ │ └── threadpool │ │ │ ├── NoSuchThreadPoolException.java │ │ │ ├── NoSuchWorkQueueException.java │ │ │ ├── ThreadPool.java │ │ │ ├── ThreadPoolChooser.java │ │ │ ├── ThreadPoolFactory.java │ │ │ ├── ThreadPoolManager.java │ │ │ ├── ThreadStateValidator.java │ │ │ ├── Work.java │ │ │ └── WorkQueue.java │ │ └── module-info.java │ └── test │ └── java │ └── com │ └── sun │ └── corba │ └── ee │ └── impl │ └── threadpool │ └── ThreadPoolImplTest.java ├── make ├── BundleNotes.txt ├── build.properties ├── build.xml ├── copyright-information │ ├── copyright-exclude.txt │ ├── copyright.txt │ └── file_suffix_classification.txt ├── findbugs-filter.xml ├── runtest ├── src-build-notes.txt └── src-build.xml ├── omgapi ├── pom.xml └── src │ ├── main │ ├── idl-includes │ │ ├── corba.idl │ │ ├── manual-ir.idl │ │ └── orb.idl │ ├── idl │ │ ├── CORBAX.idl │ │ ├── CosTSInteroperation.idl │ │ ├── CosTransactions.idl │ │ ├── Dynamic.idl │ │ ├── DynamicAny.idl │ │ ├── IOP.idl │ │ ├── Interceptors.idl │ │ ├── Messaging.idl │ │ ├── SendingContext.idl │ │ ├── TimeBase.idl │ │ ├── ir.idl │ │ ├── nameservice.idl │ │ └── poa.idl │ └── java │ │ ├── com │ │ └── sun │ │ │ └── corba │ │ │ └── ee │ │ │ └── org │ │ │ └── omg │ │ │ └── CORBA │ │ │ ├── GetPropertyAction.java │ │ │ ├── ORB.java │ │ │ └── SUNVMCID.java │ │ ├── javax │ │ └── rmi │ │ │ ├── CORBA │ │ │ ├── ClassDesc.java │ │ │ ├── EnumDesc.java │ │ │ ├── GetORBPropertiesFileAction.java │ │ │ ├── PortableRemoteObjectDelegate.java │ │ │ ├── ProxyDesc.java │ │ │ ├── Stub.java │ │ │ ├── StubDelegate.java │ │ │ ├── Tie.java │ │ │ ├── Util.java │ │ │ ├── UtilDelegate.java │ │ │ ├── ValueHandler.java │ │ │ ├── ValueHandlerMultiFormat.java │ │ │ └── package.html │ │ │ ├── PortableRemoteObject.java │ │ │ └── package.html │ │ ├── module-info.java │ │ └── org │ │ └── omg │ │ ├── CORBA │ │ ├── ACTIVITY_COMPLETED.java │ │ ├── ACTIVITY_REQUIRED.java │ │ ├── ARG_IN.java │ │ ├── ARG_INOUT.java │ │ ├── ARG_OUT.java │ │ ├── Any.java │ │ ├── AnyHolder.java │ │ ├── AnySeqHelper.java │ │ ├── AnySeqHolder.java │ │ ├── BAD_CONTEXT.java │ │ ├── BAD_INV_ORDER.java │ │ ├── BAD_OPERATION.java │ │ ├── BAD_PARAM.java │ │ ├── BAD_POLICY.java │ │ ├── BAD_POLICY_TYPE.java │ │ ├── BAD_POLICY_VALUE.java │ │ ├── BAD_QOS.java │ │ ├── BAD_TYPECODE.java │ │ ├── BooleanHolder.java │ │ ├── BooleanSeqHelper.java │ │ ├── BooleanSeqHolder.java │ │ ├── Bounds.java │ │ ├── ByteHolder.java │ │ ├── CODESET_INCOMPATIBLE.java │ │ ├── COMM_FAILURE.java │ │ ├── CTX_RESTRICT_SCOPE.java │ │ ├── CharHolder.java │ │ ├── CharSeqHelper.java │ │ ├── CharSeqHolder.java │ │ ├── CompletionStatus.java │ │ ├── CompletionStatusHelper.java │ │ ├── Context.java │ │ ├── ContextList.java │ │ ├── Current.java │ │ ├── CurrentHelper.java │ │ ├── CurrentHolder.java │ │ ├── CurrentOperations.java │ │ ├── CustomMarshal.java │ │ ├── DATA_CONVERSION.java │ │ ├── DataInputStream.java │ │ ├── DataOutputStream.java │ │ ├── DefinitionKind.java │ │ ├── DefinitionKindHelper.java │ │ ├── DomainManager.java │ │ ├── DomainManagerOperations.java │ │ ├── DoubleHolder.java │ │ ├── DoubleSeqHelper.java │ │ ├── DoubleSeqHolder.java │ │ ├── DynAny.java │ │ ├── DynAnyPackage │ │ │ ├── Invalid.java │ │ │ ├── InvalidSeq.java │ │ │ ├── InvalidValue.java │ │ │ ├── TypeMismatch.java │ │ │ └── package.html │ │ ├── DynArray.java │ │ ├── DynEnum.java │ │ ├── DynFixed.java │ │ ├── DynSequence.java │ │ ├── DynStruct.java │ │ ├── DynUnion.java │ │ ├── DynValue.java │ │ ├── DynamicImplementation.java │ │ ├── Environment.java │ │ ├── ExceptionList.java │ │ ├── FREE_MEM.java │ │ ├── FieldNameHelper.java │ │ ├── FixedHolder.java │ │ ├── FloatHolder.java │ │ ├── FloatSeqHelper.java │ │ ├── FloatSeqHolder.java │ │ ├── IDLType.java │ │ ├── IDLTypeHelper.java │ │ ├── IDLTypeOperations.java │ │ ├── IMP_LIMIT.java │ │ ├── INITIALIZE.java │ │ ├── INTERNAL.java │ │ ├── INTF_REPOS.java │ │ ├── INVALID_ACTIVITY.java │ │ ├── INVALID_TRANSACTION.java │ │ ├── INV_FLAG.java │ │ ├── INV_IDENT.java │ │ ├── INV_OBJREF.java │ │ ├── INV_POLICY.java │ │ ├── IRObject.java │ │ ├── IRObjectOperations.java │ │ ├── IdentifierHelper.java │ │ ├── IntHolder.java │ │ ├── LocalObject.java │ │ ├── LongHolder.java │ │ ├── LongLongSeqHelper.java │ │ ├── LongLongSeqHolder.java │ │ ├── LongSeqHelper.java │ │ ├── LongSeqHolder.java │ │ ├── MARSHAL.java │ │ ├── NO_IMPLEMENT.java │ │ ├── NO_MEMORY.java │ │ ├── NO_PERMISSION.java │ │ ├── NO_RESOURCES.java │ │ ├── NO_RESPONSE.java │ │ ├── NVList.java │ │ ├── NameValuePair.java │ │ ├── NameValuePairHelper.java │ │ ├── NamedValue.java │ │ ├── OBJECT_NOT_EXIST.java │ │ ├── OBJ_ADAPTER.java │ │ ├── OMGVMCID.java │ │ ├── ORB.java │ │ ├── ORBPackage │ │ │ ├── InconsistentTypeCode.java │ │ │ ├── InvalidName.java │ │ │ └── package.html │ │ ├── Object.java │ │ ├── ObjectHelper.java │ │ ├── ObjectHolder.java │ │ ├── PERSIST_STORE.java │ │ ├── PRIVATE_MEMBER.java │ │ ├── PUBLIC_MEMBER.java │ │ ├── Policy.java │ │ ├── PolicyHelper.java │ │ ├── PolicyHolder.java │ │ ├── PolicyListHelper.java │ │ ├── PolicyListHolder.java │ │ ├── PolicyOperations.java │ │ ├── PolicyTypeHelper.java │ │ ├── Principal.java │ │ ├── PrincipalHolder.java │ │ ├── REBIND.java │ │ ├── Request.java │ │ ├── ServerRequest.java │ │ ├── ServiceDetail.java │ │ ├── ServiceDetailHelper.java │ │ ├── ServiceInformation.java │ │ ├── ServiceInformationHelper.java │ │ ├── ServiceInformationHolder.java │ │ ├── SetOverrideType.java │ │ ├── SetOverrideTypeHelper.java │ │ ├── ShortHolder.java │ │ ├── ShortSeqHelper.java │ │ ├── ShortSeqHolder.java │ │ ├── StringHolder.java │ │ ├── StringValueHelper.java │ │ ├── StructMember.java │ │ ├── StructMemberHelper.java │ │ ├── SystemException.java │ │ ├── TCKind.java │ │ ├── TIMEOUT.java │ │ ├── TRANSACTION_MODE.java │ │ ├── TRANSACTION_REQUIRED.java │ │ ├── TRANSACTION_ROLLEDBACK.java │ │ ├── TRANSACTION_UNAVAILABLE.java │ │ ├── TRANSIENT.java │ │ ├── TSIdentification.java │ │ ├── TSIdentificationPackage │ │ │ ├── AlreadyIdentified.java │ │ │ ├── NotAvailable.java │ │ │ └── package.html │ │ ├── TypeCode.java │ │ ├── TypeCodeHolder.java │ │ ├── TypeCodePackage │ │ │ ├── BadKind.java │ │ │ ├── Bounds.java │ │ │ └── package.html │ │ ├── ULongLongSeqHelper.java │ │ ├── ULongLongSeqHolder.java │ │ ├── ULongSeqHelper.java │ │ ├── ULongSeqHolder.java │ │ ├── UNKNOWN.java │ │ ├── UNSUPPORTED_POLICY.java │ │ ├── UNSUPPORTED_POLICY_VALUE.java │ │ ├── UShortSeqHelper.java │ │ ├── UShortSeqHolder.java │ │ ├── UnionMember.java │ │ ├── UnionMemberHelper.java │ │ ├── UnknownUserException.java │ │ ├── UnknownUserExceptionHelper.java │ │ ├── UnknownUserExceptionHolder.java │ │ ├── UserException.java │ │ ├── VM_ABSTRACT.java │ │ ├── VM_CUSTOM.java │ │ ├── VM_NONE.java │ │ ├── VM_TRUNCATABLE.java │ │ ├── ValueBaseHelper.java │ │ ├── ValueBaseHolder.java │ │ ├── ValueMember.java │ │ ├── ValueMemberHelper.java │ │ ├── VersionSpecHelper.java │ │ ├── VisibilityHelper.java │ │ ├── WCharSeqHelper.java │ │ ├── WCharSeqHolder.java │ │ ├── WStringValueHelper.java │ │ ├── WrongTransaction.java │ │ ├── WrongTransactionHelper.java │ │ ├── WrongTransactionHolder.java │ │ ├── _IDLTypeStub.java │ │ ├── _PolicyStub.java │ │ ├── package.html │ │ └── portable │ │ │ ├── ApplicationException.java │ │ │ ├── BoxedValueHelper.java │ │ │ ├── CustomValue.java │ │ │ ├── Delegate.java │ │ │ ├── IDLEntity.java │ │ │ ├── IndirectionException.java │ │ │ ├── InputStream.java │ │ │ ├── InvokeHandler.java │ │ │ ├── ObjectImpl.java │ │ │ ├── OutputStream.java │ │ │ ├── RemarshalException.java │ │ │ ├── ResponseHandler.java │ │ │ ├── ServantObject.java │ │ │ ├── Streamable.java │ │ │ ├── StreamableValue.java │ │ │ ├── UnknownException.java │ │ │ ├── ValueBase.java │ │ │ ├── ValueFactory.java │ │ │ ├── ValueInputStream.java │ │ │ ├── ValueOutputStream.java │ │ │ └── package.html │ │ ├── CORBA_2_3 │ │ ├── ORB.java │ │ ├── package.html │ │ └── portable │ │ │ ├── Delegate.java │ │ │ ├── InputStream.java │ │ │ ├── ObjectImpl.java │ │ │ ├── OutputStream.java │ │ │ └── package.html │ │ ├── CosTSPortability │ │ ├── Receiver.java │ │ ├── ReceiverHolder.java │ │ ├── Sender.java │ │ └── SenderHolder.java │ │ ├── PortableServer │ │ ├── DynamicImplementation.java │ │ ├── POAHelper.java │ │ ├── Servant.java │ │ ├── ServantLocatorPackage │ │ │ └── CookieHolder.java │ │ └── portable │ │ │ └── Delegate.java │ │ └── stub │ │ └── java │ │ └── rmi │ │ ├── _Remote_Stub.java │ │ └── package.html │ └── test │ └── java │ └── org │ └── omg │ └── CORBA │ └── ORBTest.java ├── orbmain ├── pom.xml └── src │ ├── main │ ├── java │ │ ├── com │ │ │ └── sun │ │ │ │ ├── corba │ │ │ │ └── ee │ │ │ │ │ ├── impl │ │ │ │ │ ├── copyobject │ │ │ │ │ │ ├── CopierManagerImpl.java │ │ │ │ │ │ ├── JavaStreamORBObjectCopierImpl.java │ │ │ │ │ │ ├── ORBStreamObjectCopierImpl.java │ │ │ │ │ │ ├── OldReflectObjectCopierImpl.java │ │ │ │ │ │ ├── ReferenceObjectCopierImpl.java │ │ │ │ │ │ └── ReflectObjectCopierImpl.java │ │ │ │ │ ├── corba │ │ │ │ │ │ ├── AnyImpl.java │ │ │ │ │ │ ├── AnyImplHelper.java │ │ │ │ │ │ ├── AsynchInvoke.java │ │ │ │ │ │ ├── CORBAObjectImpl.java │ │ │ │ │ │ ├── ContextImpl.java │ │ │ │ │ │ ├── ContextListImpl.java │ │ │ │ │ │ ├── EnvironmentImpl.java │ │ │ │ │ │ ├── ExceptionListImpl.java │ │ │ │ │ │ ├── NVListImpl.java │ │ │ │ │ │ ├── NamedValueImpl.java │ │ │ │ │ │ ├── PrincipalImpl.java │ │ │ │ │ │ ├── RequestImpl.java │ │ │ │ │ │ ├── ServerRequestImpl.java │ │ │ │ │ │ ├── TCUtility.java │ │ │ │ │ │ ├── TypeCodeFactory.java │ │ │ │ │ │ ├── TypeCodeImpl.java │ │ │ │ │ │ ├── TypeCodeImplHelper.java │ │ │ │ │ │ └── orb_config_design.txt │ │ │ │ │ ├── dynamicany │ │ │ │ │ │ ├── DynAnyBasicImpl.java │ │ │ │ │ │ ├── DynAnyCollectionImpl.java │ │ │ │ │ │ ├── DynAnyComplexImpl.java │ │ │ │ │ │ ├── DynAnyConstructedImpl.java │ │ │ │ │ │ ├── DynAnyFactoryImpl.java │ │ │ │ │ │ ├── DynAnyImpl.java │ │ │ │ │ │ ├── DynAnyUtil.java │ │ │ │ │ │ ├── DynArrayImpl.java │ │ │ │ │ │ ├── DynEnumImpl.java │ │ │ │ │ │ ├── DynFixedImpl.java │ │ │ │ │ │ ├── DynSequenceImpl.java │ │ │ │ │ │ ├── DynStructImpl.java │ │ │ │ │ │ ├── DynUnionImpl.java │ │ │ │ │ │ ├── DynValueBoxImpl.java │ │ │ │ │ │ ├── DynValueCommonImpl.java │ │ │ │ │ │ └── DynValueImpl.java │ │ │ │ │ ├── encoding │ │ │ │ │ │ ├── BufferManagerFactory.java │ │ │ │ │ │ ├── BufferManagerRead.java │ │ │ │ │ │ ├── BufferManagerReadGrow.java │ │ │ │ │ │ ├── BufferManagerReadStream.java │ │ │ │ │ │ ├── BufferManagerWrite.java │ │ │ │ │ │ ├── BufferManagerWriteGrow.java │ │ │ │ │ │ ├── BufferManagerWriteStream.java │ │ │ │ │ │ ├── BufferQueue.java │ │ │ │ │ │ ├── CDRInputObject.java │ │ │ │ │ │ ├── CDRInputStreamBase.java │ │ │ │ │ │ ├── CDRInputStream_1_0.java │ │ │ │ │ │ ├── CDRInputStream_1_1.java │ │ │ │ │ │ ├── CDRInputStream_1_2.java │ │ │ │ │ │ ├── CDROutputObject.java │ │ │ │ │ │ ├── CDROutputStreamBase.java │ │ │ │ │ │ ├── CDROutputStream_1_0.java │ │ │ │ │ │ ├── CDROutputStream_1_1.java │ │ │ │ │ │ ├── CDROutputStream_1_2.java │ │ │ │ │ │ ├── CachedCodeBase.java │ │ │ │ │ │ ├── CodeSetCache.java │ │ │ │ │ │ ├── CodeSetComponentInfo.java │ │ │ │ │ │ ├── CodeSetConversion.java │ │ │ │ │ │ ├── EncapsInputStream.java │ │ │ │ │ │ ├── EncapsInputStreamFactory.java │ │ │ │ │ │ ├── EncapsOutputStream.java │ │ │ │ │ │ ├── MarkAndResetHandler.java │ │ │ │ │ │ ├── MarshalInputStream.java │ │ │ │ │ │ ├── MarshalOutputStream.java │ │ │ │ │ │ ├── OSFCodeSetRegistry.java │ │ │ │ │ │ ├── OutputStreamFactory.java │ │ │ │ │ │ ├── RestorableInputStream.java │ │ │ │ │ │ ├── TypeCodeInputStream.java │ │ │ │ │ │ ├── TypeCodeOutputStream.java │ │ │ │ │ │ ├── TypeCodeReader.java │ │ │ │ │ │ └── WrapperInputStream.java │ │ │ │ │ ├── folb │ │ │ │ │ │ ├── CSIv2SSLTaggedComponentHandler.java │ │ │ │ │ │ ├── ClientGroupManager.java │ │ │ │ │ │ ├── GroupInfoServiceBase.java │ │ │ │ │ │ ├── InitialGroupInfoService.java │ │ │ │ │ │ └── ServerGroupManager.java │ │ │ │ │ ├── interceptors │ │ │ │ │ │ ├── CDREncapsCodec.java │ │ │ │ │ │ ├── ClientRequestInfoImpl.java │ │ │ │ │ │ ├── CodecFactoryImpl.java │ │ │ │ │ │ ├── IORInfoImpl.java │ │ │ │ │ │ ├── InterceptorInvoker.java │ │ │ │ │ │ ├── InterceptorList.java │ │ │ │ │ │ ├── ORBInitInfoImpl.java │ │ │ │ │ │ ├── PICurrent.java │ │ │ │ │ │ ├── PIHandlerImpl.java │ │ │ │ │ │ ├── PINoOpHandlerImpl.java │ │ │ │ │ │ ├── RequestInfoImpl.java │ │ │ │ │ │ ├── ServerRequestInfoImpl.java │ │ │ │ │ │ ├── SlotTable.java │ │ │ │ │ │ └── SlotTableStack.java │ │ │ │ │ ├── io │ │ │ │ │ │ ├── Exceptions.java │ │ │ │ │ │ ├── FVDCodeBaseImpl.java │ │ │ │ │ │ ├── IIOPInputStream.java │ │ │ │ │ │ ├── IIOPOutputStream.java │ │ │ │ │ │ ├── InputStreamHook.java │ │ │ │ │ │ ├── JavaCorbaAccess.java │ │ │ │ │ │ ├── ObjectStreamClass.java │ │ │ │ │ │ ├── ObjectStreamClassCorbaExt.java │ │ │ │ │ │ ├── ObjectStreamField.java │ │ │ │ │ │ ├── OptionalDataException.java │ │ │ │ │ │ ├── OutputStreamHook.java │ │ │ │ │ │ ├── SharedSecrets.java │ │ │ │ │ │ ├── TypeMismatchException.java │ │ │ │ │ │ ├── ValueHandlerImpl.java │ │ │ │ │ │ └── ValueUtility.java │ │ │ │ │ ├── ior │ │ │ │ │ │ ├── ByteBuffer.java │ │ │ │ │ │ ├── EncapsulationUtility.java │ │ │ │ │ │ ├── FreezableList.java │ │ │ │ │ │ ├── GenericIdentifiable.java │ │ │ │ │ │ ├── GenericTaggedComponent.java │ │ │ │ │ │ ├── GenericTaggedProfile.java │ │ │ │ │ │ ├── IORImpl.java │ │ │ │ │ │ ├── IORTemplateImpl.java │ │ │ │ │ │ ├── IORTemplateListImpl.java │ │ │ │ │ │ ├── IdentifiableFactoryFinderBase.java │ │ │ │ │ │ ├── JIDLObjectKeyTemplate.java │ │ │ │ │ │ ├── NewObjectKeyTemplateBase.java │ │ │ │ │ │ ├── ObjectAdapterIdArray.java │ │ │ │ │ │ ├── ObjectAdapterIdBase.java │ │ │ │ │ │ ├── ObjectAdapterIdNumber.java │ │ │ │ │ │ ├── ObjectIdImpl.java │ │ │ │ │ │ ├── ObjectKeyFactoryImpl.java │ │ │ │ │ │ ├── ObjectKeyImpl.java │ │ │ │ │ │ ├── ObjectKeyTemplateBase.java │ │ │ │ │ │ ├── ObjectReferenceFactoryImpl.java │ │ │ │ │ │ ├── ObjectReferenceProducerBase.java │ │ │ │ │ │ ├── ObjectReferenceTemplateImpl.java │ │ │ │ │ │ ├── OldJIDLObjectKeyTemplate.java │ │ │ │ │ │ ├── OldObjectKeyTemplateBase.java │ │ │ │ │ │ ├── OldPOAObjectKeyTemplate.java │ │ │ │ │ │ ├── POAObjectKeyTemplate.java │ │ │ │ │ │ ├── StubIORImpl.java │ │ │ │ │ │ ├── TaggedComponentFactoryFinderImpl.java │ │ │ │ │ │ ├── TaggedProfileFactoryFinderImpl.java │ │ │ │ │ │ ├── TaggedProfileTemplateFactoryFinderImpl.java │ │ │ │ │ │ ├── TestAssertions.txt │ │ │ │ │ │ ├── WireObjectKeyTemplate.java │ │ │ │ │ │ ├── iiop │ │ │ │ │ │ │ ├── AlternateIIOPAddressComponentImpl.java │ │ │ │ │ │ │ ├── ClusterInstanceInfoComponentImpl.java │ │ │ │ │ │ │ ├── CodeSetsComponentImpl.java │ │ │ │ │ │ │ ├── IIOPAddressBase.java │ │ │ │ │ │ │ ├── IIOPAddressClosureImpl.java │ │ │ │ │ │ │ ├── IIOPAddressImpl.java │ │ │ │ │ │ │ ├── IIOPProfileImpl.java │ │ │ │ │ │ │ ├── IIOPProfileTemplateImpl.java │ │ │ │ │ │ │ ├── JavaCodebaseComponentImpl.java │ │ │ │ │ │ │ ├── JavaSerializationComponent.java │ │ │ │ │ │ │ ├── LoadBalancingComponentImpl.java │ │ │ │ │ │ │ ├── MaxStreamFormatVersionComponentImpl.java │ │ │ │ │ │ │ ├── ORBTypeComponentImpl.java │ │ │ │ │ │ │ └── RequestPartitioningComponentImpl.java │ │ │ │ │ │ └── notes.txt │ │ │ │ │ ├── javax │ │ │ │ │ │ └── rmi │ │ │ │ │ │ │ ├── CORBA │ │ │ │ │ │ │ ├── StubDelegateImpl.java │ │ │ │ │ │ │ └── Util.java │ │ │ │ │ │ │ └── PortableRemoteObject.java │ │ │ │ │ ├── legacy │ │ │ │ │ │ └── connection │ │ │ │ │ │ │ ├── DefaultSocketFactory.java │ │ │ │ │ │ │ ├── EndPointInfoImpl.java │ │ │ │ │ │ │ ├── LegacyServerSocketManagerImpl.java │ │ │ │ │ │ │ ├── SocketFactoryAcceptorImpl.java │ │ │ │ │ │ │ ├── SocketFactoryConnectionImpl.java │ │ │ │ │ │ │ ├── SocketFactoryContactInfoImpl.java │ │ │ │ │ │ │ ├── SocketFactoryContactInfoListImpl.java │ │ │ │ │ │ │ ├── SocketFactoryContactInfoListIteratorImpl.java │ │ │ │ │ │ │ └── USLPort.java │ │ │ │ │ ├── misc │ │ │ │ │ │ ├── ByteArrayWrapper.java │ │ │ │ │ │ ├── CacheTable.java │ │ │ │ │ │ ├── ClassInfoCache.java │ │ │ │ │ │ ├── CorbaResourceUtil.java │ │ │ │ │ │ ├── HexOutputStream.java │ │ │ │ │ │ ├── LegacyHookGetFields.java │ │ │ │ │ │ ├── LegacyHookPutFields.java │ │ │ │ │ │ ├── LogKeywords.java │ │ │ │ │ │ ├── ORBUtility.java │ │ │ │ │ │ ├── RepIdDelegator.java │ │ │ │ │ │ ├── RepositoryIdFactory.java │ │ │ │ │ │ ├── RepositoryIdInterface.java │ │ │ │ │ │ ├── RepositoryIdStrings.java │ │ │ │ │ │ └── RepositoryIdUtility.java │ │ │ │ │ ├── naming │ │ │ │ │ │ ├── cosnaming │ │ │ │ │ │ │ ├── BindingIteratorImpl.java │ │ │ │ │ │ │ ├── InterOperableNamingImpl.java │ │ │ │ │ │ │ ├── InternalBindingKey.java │ │ │ │ │ │ │ ├── InternalBindingValue.java │ │ │ │ │ │ │ ├── NamingContextDataStore.java │ │ │ │ │ │ │ ├── NamingContextImpl.java │ │ │ │ │ │ │ ├── NamingUtils.java │ │ │ │ │ │ │ ├── TransientBindingIterator.java │ │ │ │ │ │ │ ├── TransientNameServer.java │ │ │ │ │ │ │ ├── TransientNameService.java │ │ │ │ │ │ │ └── TransientNamingContext.java │ │ │ │ │ │ └── namingutil │ │ │ │ │ │ │ ├── CorbalocURL.java │ │ │ │ │ │ │ ├── CorbanameURL.java │ │ │ │ │ │ │ ├── IIOPEndpointInfo.java │ │ │ │ │ │ │ ├── INSURL.java │ │ │ │ │ │ │ ├── INSURLBase.java │ │ │ │ │ │ │ ├── INSURLHandler.java │ │ │ │ │ │ │ ├── NamingConstants.java │ │ │ │ │ │ │ └── Utility.java │ │ │ │ │ ├── oa │ │ │ │ │ │ ├── NullServantImpl.java │ │ │ │ │ │ ├── poa │ │ │ │ │ │ │ ├── AOMEntry.java │ │ │ │ │ │ │ ├── ActiveObjectMap.java │ │ │ │ │ │ │ ├── BadServerIdHandler.java │ │ │ │ │ │ │ ├── DelegateImpl.java │ │ │ │ │ │ │ ├── IdAssignmentPolicyImpl.java │ │ │ │ │ │ │ ├── IdUniquenessPolicyImpl.java │ │ │ │ │ │ │ ├── ImplicitActivationPolicyImpl.java │ │ │ │ │ │ │ ├── LifespanPolicyImpl.java │ │ │ │ │ │ │ ├── POACurrent.java │ │ │ │ │ │ │ ├── POAFactory.java │ │ │ │ │ │ │ ├── POAImpl.java │ │ │ │ │ │ │ ├── POAManagerImpl.java │ │ │ │ │ │ │ ├── POAPolicyMediator.java │ │ │ │ │ │ │ ├── POAPolicyMediatorBase.java │ │ │ │ │ │ │ ├── POAPolicyMediatorBase_R.java │ │ │ │ │ │ │ ├── POAPolicyMediatorFactory.java │ │ │ │ │ │ │ ├── POAPolicyMediatorImpl_NR_UDS.java │ │ │ │ │ │ │ ├── POAPolicyMediatorImpl_NR_USM.java │ │ │ │ │ │ │ ├── POAPolicyMediatorImpl_R_AOM.java │ │ │ │ │ │ │ ├── POAPolicyMediatorImpl_R_UDS.java │ │ │ │ │ │ │ ├── POAPolicyMediatorImpl_R_USM.java │ │ │ │ │ │ │ ├── Policies.java │ │ │ │ │ │ │ ├── RequestProcessingPolicyImpl.java │ │ │ │ │ │ │ ├── ServantRetentionPolicyImpl.java │ │ │ │ │ │ │ ├── ThreadPolicyImpl.java │ │ │ │ │ │ │ ├── minor_code_example.txt │ │ │ │ │ │ │ └── standard_minor_codes.txt │ │ │ │ │ │ ├── rfm │ │ │ │ │ │ │ ├── ReferenceFactoryImpl.java │ │ │ │ │ │ │ ├── ReferenceFactoryManagerImpl.java │ │ │ │ │ │ │ └── ReferenceManagerConfigurator.java │ │ │ │ │ │ └── toa │ │ │ │ │ │ │ ├── TOA.java │ │ │ │ │ │ │ ├── TOAFactory.java │ │ │ │ │ │ │ ├── TOAImpl.java │ │ │ │ │ │ │ └── TransientObjectManager.java │ │ │ │ │ ├── orb │ │ │ │ │ │ ├── AppletDataCollector.java │ │ │ │ │ │ ├── DataCollectorBase.java │ │ │ │ │ │ ├── DataCollectorFactory.java │ │ │ │ │ │ ├── NormalDataCollector.java │ │ │ │ │ │ ├── NormalParserAction.java │ │ │ │ │ │ ├── NormalParserData.java │ │ │ │ │ │ ├── ORBConfiguratorImpl.java │ │ │ │ │ │ ├── ORBDataParserImpl.java │ │ │ │ │ │ ├── ORBImpl.java │ │ │ │ │ │ ├── ORBSingleton.java │ │ │ │ │ │ ├── ORBVersionImpl.java │ │ │ │ │ │ ├── ObjectKeyCacheEntryBase.java │ │ │ │ │ │ ├── ObjectKeyCacheEntryImpl.java │ │ │ │ │ │ ├── ObjectKeyCacheEntryNoObjectAdapterImpl.java │ │ │ │ │ │ ├── ParserAction.java │ │ │ │ │ │ ├── ParserActionBase.java │ │ │ │ │ │ ├── ParserActionFactory.java │ │ │ │ │ │ ├── ParserDataBase.java │ │ │ │ │ │ ├── ParserTable.java │ │ │ │ │ │ ├── PrefixParserAction.java │ │ │ │ │ │ ├── PrefixParserData.java │ │ │ │ │ │ ├── PropertyOnlyDataCollector.java │ │ │ │ │ │ └── parsing_combinators.txt │ │ │ │ │ ├── osgi │ │ │ │ │ │ └── loader │ │ │ │ │ │ │ └── OSGIListener.java │ │ │ │ │ ├── plugin │ │ │ │ │ │ └── hwlb │ │ │ │ │ │ │ ├── NoConnectionCacheImpl.java │ │ │ │ │ │ │ ├── RetryClientRequestInterceptor.java │ │ │ │ │ │ │ ├── RetryServerRequestInterceptor.java │ │ │ │ │ │ │ └── VirtualAddressAgentImpl.java │ │ │ │ │ ├── presentation │ │ │ │ │ │ └── rmi │ │ │ │ │ │ │ ├── DynamicMethodMarshallerImpl.java │ │ │ │ │ │ │ ├── DynamicStubImpl.java │ │ │ │ │ │ │ ├── ExceptionHandler.java │ │ │ │ │ │ │ ├── ExceptionHandlerImpl.java │ │ │ │ │ │ │ ├── Exceptions.java │ │ │ │ │ │ │ ├── IDLNameTranslatorImpl.java │ │ │ │ │ │ │ ├── IDLType.java │ │ │ │ │ │ │ ├── IDLTypeException.java │ │ │ │ │ │ │ ├── IDLTypesUtil.java │ │ │ │ │ │ │ ├── InvocationHandlerFactoryImpl.java │ │ │ │ │ │ │ ├── JNDIStateFactoryImpl.java │ │ │ │ │ │ │ ├── PresentationManagerImpl.java │ │ │ │ │ │ │ ├── ReflectiveTie.java │ │ │ │ │ │ │ ├── StubConnectImpl.java │ │ │ │ │ │ │ ├── StubFactoryBase.java │ │ │ │ │ │ │ ├── StubFactoryDynamicBase.java │ │ │ │ │ │ │ ├── StubFactoryFactoryBase.java │ │ │ │ │ │ │ ├── StubFactoryFactoryDynamicBase.java │ │ │ │ │ │ │ ├── StubFactoryFactoryStaticImpl.java │ │ │ │ │ │ │ ├── StubFactoryStaticImpl.java │ │ │ │ │ │ │ ├── StubInvocationHandlerImpl.java │ │ │ │ │ │ │ ├── codegen │ │ │ │ │ │ │ ├── CodegenProxyCreator.java │ │ │ │ │ │ │ ├── CodegenStubBase.java │ │ │ │ │ │ │ ├── StubFactoryCodegenImpl.java │ │ │ │ │ │ │ └── StubFactoryFactoryCodegenImpl.java │ │ │ │ │ │ │ ├── jndi.properties │ │ │ │ │ │ │ └── proxy │ │ │ │ │ │ │ ├── StubFactoryFactoryProxyImpl.java │ │ │ │ │ │ │ └── StubFactoryProxyImpl.java │ │ │ │ │ ├── protocol │ │ │ │ │ │ ├── AddressingDispositionException.java │ │ │ │ │ │ ├── BootstrapServerRequestDispatcher.java │ │ │ │ │ │ ├── ClientDelegateImpl.java │ │ │ │ │ │ ├── ClientRequestDispatcherImpl.java │ │ │ │ │ │ ├── FullServantCacheLocalCRDImpl.java │ │ │ │ │ │ ├── INSServerRequestDispatcher.java │ │ │ │ │ │ ├── InfoOnlyServantCacheLocalCRDImpl.java │ │ │ │ │ │ ├── InvocationInfo.java │ │ │ │ │ │ ├── JIDLLocalCRDImpl.java │ │ │ │ │ │ ├── LocalClientRequestDispatcherBase.java │ │ │ │ │ │ ├── MessageMediatorImpl.java │ │ │ │ │ │ ├── MessageParserImpl.java │ │ │ │ │ │ ├── MinimalServantCacheLocalCRDImpl.java │ │ │ │ │ │ ├── NotLocalLocalCRDImpl.java │ │ │ │ │ │ ├── POALocalCRDImpl.java │ │ │ │ │ │ ├── RequestCanceledException.java │ │ │ │ │ │ ├── RequestDispatcherRegistryImpl.java │ │ │ │ │ │ ├── RequestIdImpl.java │ │ │ │ │ │ ├── ServantCacheLocalCRDBase.java │ │ │ │ │ │ ├── ServerRequestDispatcherImpl.java │ │ │ │ │ │ ├── SharedCDRClientRequestDispatcherImpl.java │ │ │ │ │ │ ├── SpecialMethod.java │ │ │ │ │ │ └── giopmsgheaders │ │ │ │ │ │ │ ├── AddressingDispositionHelper.java │ │ │ │ │ │ │ ├── CancelRequestMessage.java │ │ │ │ │ │ │ ├── CancelRequestMessage_1_0.java │ │ │ │ │ │ │ ├── CancelRequestMessage_1_1.java │ │ │ │ │ │ │ ├── CancelRequestMessage_1_2.java │ │ │ │ │ │ │ ├── FragmentMessage.java │ │ │ │ │ │ │ ├── FragmentMessage_1_1.java │ │ │ │ │ │ │ ├── FragmentMessage_1_2.java │ │ │ │ │ │ │ ├── IORAddressingInfo.java │ │ │ │ │ │ │ ├── IORAddressingInfoHelper.java │ │ │ │ │ │ │ ├── KeyAddr.java │ │ │ │ │ │ │ ├── LocateReplyMessage.java │ │ │ │ │ │ │ ├── LocateReplyMessage_1_0.java │ │ │ │ │ │ │ ├── LocateReplyMessage_1_1.java │ │ │ │ │ │ │ ├── LocateReplyMessage_1_2.java │ │ │ │ │ │ │ ├── LocateReplyOrReplyMessage.java │ │ │ │ │ │ │ ├── LocateRequestMessage.java │ │ │ │ │ │ │ ├── LocateRequestMessage_1_0.java │ │ │ │ │ │ │ ├── LocateRequestMessage_1_1.java │ │ │ │ │ │ │ ├── LocateRequestMessage_1_2.java │ │ │ │ │ │ │ ├── Message.java │ │ │ │ │ │ │ ├── MessageBase.java │ │ │ │ │ │ │ ├── MessageHandler.java │ │ │ │ │ │ │ ├── Message_1_0.java │ │ │ │ │ │ │ ├── Message_1_1.java │ │ │ │ │ │ │ ├── Message_1_2.java │ │ │ │ │ │ │ ├── ProfileAddr.java │ │ │ │ │ │ │ ├── ReferenceAddr.java │ │ │ │ │ │ │ ├── ReplyMessage.java │ │ │ │ │ │ │ ├── ReplyMessage_1_0.java │ │ │ │ │ │ │ ├── ReplyMessage_1_1.java │ │ │ │ │ │ │ ├── ReplyMessage_1_2.java │ │ │ │ │ │ │ ├── RequestMessage.java │ │ │ │ │ │ │ ├── RequestMessage_1_0.java │ │ │ │ │ │ │ ├── RequestMessage_1_1.java │ │ │ │ │ │ │ ├── RequestMessage_1_2.java │ │ │ │ │ │ │ ├── TargetAddress.java │ │ │ │ │ │ │ └── TargetAddressHelper.java │ │ │ │ │ ├── resolver │ │ │ │ │ │ ├── BootstrapResolverImpl.java │ │ │ │ │ │ ├── CompositeResolverImpl.java │ │ │ │ │ │ ├── FileResolverImpl.java │ │ │ │ │ │ ├── INSURLOperationImpl.java │ │ │ │ │ │ ├── LocalResolverImpl.java │ │ │ │ │ │ ├── ORBDefaultInitRefResolverImpl.java │ │ │ │ │ │ ├── ORBInitRefResolverImpl.java │ │ │ │ │ │ └── SplitLocalResolverImpl.java │ │ │ │ │ ├── servicecontext │ │ │ │ │ │ ├── CodeSetServiceContextImpl.java │ │ │ │ │ │ ├── MaxStreamFormatVersionServiceContextImpl.java │ │ │ │ │ │ ├── ORBVersionServiceContextImpl.java │ │ │ │ │ │ ├── SendingContextServiceContextImpl.java │ │ │ │ │ │ ├── ServiceContextFactoryRegistryImpl.java │ │ │ │ │ │ ├── ServiceContextsImpl.java │ │ │ │ │ │ ├── UEInfoServiceContextImpl.java │ │ │ │ │ │ └── UnknownServiceContextImpl.java │ │ │ │ │ ├── transport │ │ │ │ │ │ ├── AcceptorAcceptOnlyImpl.java │ │ │ │ │ │ ├── AcceptorBase.java │ │ │ │ │ │ ├── AcceptorImpl.java │ │ │ │ │ │ ├── AcceptorLazyImpl.java │ │ │ │ │ │ ├── ByteBufferPoolImpl.java │ │ │ │ │ │ ├── ConnectionCacheBase.java │ │ │ │ │ │ ├── ConnectionImpl.java │ │ │ │ │ │ ├── ContactInfoBase.java │ │ │ │ │ │ ├── ContactInfoImpl.java │ │ │ │ │ │ ├── ContactInfoListImpl.java │ │ │ │ │ │ ├── ContactInfoListIteratorImpl.java │ │ │ │ │ │ ├── DefaultIORToSocketInfoImpl.java │ │ │ │ │ │ ├── DefaultSocketFactoryImpl.java │ │ │ │ │ │ ├── EventHandlerBase.java │ │ │ │ │ │ ├── InboundConnectionCacheImpl.java │ │ │ │ │ │ ├── InboundConnectionCacheProbeProvider.java │ │ │ │ │ │ ├── ListenerThreadImpl.java │ │ │ │ │ │ ├── MessageTraceManagerImpl.java │ │ │ │ │ │ ├── NioBufferWriter.java │ │ │ │ │ │ ├── OutboundConnectionCacheImpl.java │ │ │ │ │ │ ├── OutboundConnectionCacheProbeProvider.java │ │ │ │ │ │ ├── ReaderThreadImpl.java │ │ │ │ │ │ ├── ResponseWaitingRoomImpl.java │ │ │ │ │ │ ├── SelectorImpl.java │ │ │ │ │ │ ├── SharedCDRContactInfoImpl.java │ │ │ │ │ │ ├── SocketChannelReader.java │ │ │ │ │ │ ├── TcpTimeoutsImpl.java │ │ │ │ │ │ ├── TemporarySelector.java │ │ │ │ │ │ ├── TemporarySelectorClosedException.java │ │ │ │ │ │ ├── TemporarySelectorStateClosed.java │ │ │ │ │ │ ├── TemporarySelectorStateOpen.java │ │ │ │ │ │ ├── Timeoutable.java │ │ │ │ │ │ ├── TransportManagerImpl.java │ │ │ │ │ │ ├── concurrent │ │ │ │ │ │ │ ├── ConcurrentQueueBlockingImpl.java │ │ │ │ │ │ │ ├── ConcurrentQueueImpl.java │ │ │ │ │ │ │ ├── ConcurrentQueueNonBlockingImpl.java │ │ │ │ │ │ │ └── LMSQueue.java │ │ │ │ │ │ └── connection │ │ │ │ │ │ │ ├── ConnectionCacheBase.java │ │ │ │ │ │ │ ├── ConnectionCacheBlockingBase.java │ │ │ │ │ │ │ ├── ConnectionCacheNonBlockingBase.java │ │ │ │ │ │ │ ├── InboundConnectionCacheBlockingImpl.java │ │ │ │ │ │ │ ├── InboundConnectionCacheImpl.java │ │ │ │ │ │ │ ├── OutboundCacheEntry.java │ │ │ │ │ │ │ ├── OutboundConnectionCacheBlockingImpl.java │ │ │ │ │ │ │ ├── OutboundConnectionCacheImpl.java │ │ │ │ │ │ │ └── OutboundConnectionState.java │ │ │ │ │ ├── txpoa │ │ │ │ │ │ └── TSIdentificationImpl.java │ │ │ │ │ └── util │ │ │ │ │ │ ├── JDKBridge.java │ │ │ │ │ │ ├── JDKClassLoader.java │ │ │ │ │ │ ├── ORBProperties.java │ │ │ │ │ │ ├── PackagePrefixChecker.java │ │ │ │ │ │ ├── RepositoryId.java │ │ │ │ │ │ ├── RepositoryIdCache.java │ │ │ │ │ │ ├── Utility.java │ │ │ │ │ │ └── Version.java │ │ │ │ │ └── spi │ │ │ │ │ ├── copyobject │ │ │ │ │ ├── CopierManager.java │ │ │ │ │ └── CopyobjectDefaults.java │ │ │ │ │ ├── extension │ │ │ │ │ ├── CopyObjectPolicy.java │ │ │ │ │ ├── LoadBalancingPolicy.java │ │ │ │ │ ├── RequestPartitioningPolicy.java │ │ │ │ │ ├── ServantCachingPolicy.java │ │ │ │ │ └── ZeroPortPolicy.java │ │ │ │ │ ├── folb │ │ │ │ │ ├── ClusterInstanceInfo.java │ │ │ │ │ ├── GroupInfoService.java │ │ │ │ │ ├── GroupInfoServiceObserver.java │ │ │ │ │ └── SocketInfo.java │ │ │ │ │ ├── ior │ │ │ │ │ ├── EncapsulationFactoryBase.java │ │ │ │ │ ├── IOR.java │ │ │ │ │ ├── IORFactories.java │ │ │ │ │ ├── IORFactory.java │ │ │ │ │ ├── IORTemplate.java │ │ │ │ │ ├── IORTemplateList.java │ │ │ │ │ ├── IOR_classes.html │ │ │ │ │ ├── Identifiable.java │ │ │ │ │ ├── IdentifiableBase.java │ │ │ │ │ ├── IdentifiableContainerBase.java │ │ │ │ │ ├── IdentifiableFactory.java │ │ │ │ │ ├── IdentifiableFactoryFinder.java │ │ │ │ │ ├── MakeImmutable.java │ │ │ │ │ ├── ObjectAdapterId.java │ │ │ │ │ ├── ObjectId.java │ │ │ │ │ ├── ObjectKey.java │ │ │ │ │ ├── ObjectKeyFactory.java │ │ │ │ │ ├── ObjectKeyTemplate.java │ │ │ │ │ ├── TaggedComponent.java │ │ │ │ │ ├── TaggedComponentBase.java │ │ │ │ │ ├── TaggedComponentFactoryFinder.java │ │ │ │ │ ├── TaggedProfile.java │ │ │ │ │ ├── TaggedProfileTemplate.java │ │ │ │ │ ├── TaggedProfileTemplateBase.java │ │ │ │ │ ├── WriteContents.java │ │ │ │ │ ├── Writeable.java │ │ │ │ │ ├── iiop │ │ │ │ │ │ ├── AlternateIIOPAddressComponent.java │ │ │ │ │ │ ├── ClusterInstanceInfoComponent.java │ │ │ │ │ │ ├── CodeSetsComponent.java │ │ │ │ │ │ ├── GIOPVersion.java │ │ │ │ │ │ ├── IIOPAddress.java │ │ │ │ │ │ ├── IIOPFactories.java │ │ │ │ │ │ ├── IIOPProfile.java │ │ │ │ │ │ ├── IIOPProfileTemplate.java │ │ │ │ │ │ ├── JavaCodebaseComponent.java │ │ │ │ │ │ ├── LoadBalancingComponent.java │ │ │ │ │ │ ├── MaxStreamFormatVersionComponent.java │ │ │ │ │ │ ├── ORBTypeComponent.java │ │ │ │ │ │ └── RequestPartitioningComponent.java │ │ │ │ │ ├── iornotes.txt │ │ │ │ │ └── package.html │ │ │ │ │ ├── legacy │ │ │ │ │ ├── connection │ │ │ │ │ │ ├── Connection.java │ │ │ │ │ │ ├── GetEndPointInfoAgainException.java │ │ │ │ │ │ ├── LegacyServerSocketEndPointInfo.java │ │ │ │ │ │ ├── LegacyServerSocketManager.java │ │ │ │ │ │ ├── ORBSocketFactory.java │ │ │ │ │ │ └── README.txt │ │ │ │ │ └── interceptor │ │ │ │ │ │ ├── IORInfoExt.java │ │ │ │ │ │ ├── ORBInitInfoExt.java │ │ │ │ │ │ ├── RequestInfoExt.java │ │ │ │ │ │ ├── ServerRequestInfoExt.java │ │ │ │ │ │ └── UnknownType.java │ │ │ │ │ ├── logex │ │ │ │ │ └── corba │ │ │ │ │ │ ├── CS.java │ │ │ │ │ │ ├── CSValue.java │ │ │ │ │ │ ├── CorbaExtension.java │ │ │ │ │ │ └── ORBException.java │ │ │ │ │ ├── logging │ │ │ │ │ ├── ActivationSystemException.java │ │ │ │ │ ├── IORSystemException.java │ │ │ │ │ ├── InterceptorsSystemException.java │ │ │ │ │ ├── NamingSystemException.java │ │ │ │ │ ├── OMGSystemException.java │ │ │ │ │ ├── ORBUtilSystemException.java │ │ │ │ │ ├── POASystemException.java │ │ │ │ │ └── UtilSystemException.java │ │ │ │ │ ├── misc │ │ │ │ │ ├── ORBClassLoader.java │ │ │ │ │ └── ORBConstants.java │ │ │ │ │ ├── oa │ │ │ │ │ ├── NullServant.java │ │ │ │ │ ├── OADefault.java │ │ │ │ │ ├── OADestroyed.java │ │ │ │ │ ├── OAInvocationInfo.java │ │ │ │ │ ├── ObjectAdapter.java │ │ │ │ │ ├── ObjectAdapterBase.java │ │ │ │ │ ├── ObjectAdapterFactory.java │ │ │ │ │ └── rfm │ │ │ │ │ │ ├── ReferenceFactory.java │ │ │ │ │ │ └── ReferenceFactoryManager.java │ │ │ │ │ ├── orb │ │ │ │ │ ├── ClassCodeBaseHandler.java │ │ │ │ │ ├── DataCollector.java │ │ │ │ │ ├── ORB.java │ │ │ │ │ ├── ORBConfigurator.java │ │ │ │ │ ├── ORBData.java │ │ │ │ │ ├── ORBVersion.java │ │ │ │ │ ├── ORBVersionFactory.java │ │ │ │ │ ├── ObjectKeyCacheEntry.java │ │ │ │ │ ├── Operation.java │ │ │ │ │ ├── OperationFactory.java │ │ │ │ │ ├── OperationFactoryExt.java │ │ │ │ │ ├── ParserData.java │ │ │ │ │ ├── ParserDataFactory.java │ │ │ │ │ ├── ParserImplBase.java │ │ │ │ │ ├── ParserImplTableBase.java │ │ │ │ │ └── PropertyParser.java │ │ │ │ │ ├── osgi │ │ │ │ │ └── ORBFactory.java │ │ │ │ │ ├── presentation │ │ │ │ │ └── rmi │ │ │ │ │ │ ├── DynamicMethodMarshaller.java │ │ │ │ │ │ ├── DynamicStub.java │ │ │ │ │ │ ├── IDLNameTranslator.java │ │ │ │ │ │ ├── InvocationInterceptor.java │ │ │ │ │ │ ├── PresentationDefaults.java │ │ │ │ │ │ ├── PresentationManager.java │ │ │ │ │ │ ├── StubAdapter.java │ │ │ │ │ │ └── StubWrapper.java │ │ │ │ │ ├── protocol │ │ │ │ │ ├── ClientDelegate.java │ │ │ │ │ ├── ClientDelegateFactory.java │ │ │ │ │ ├── ClientInvocationInfo.java │ │ │ │ │ ├── ClientRequestDispatcher.java │ │ │ │ │ ├── ForwardException.java │ │ │ │ │ ├── InitialServerRequestDispatcher.java │ │ │ │ │ ├── LocalClientRequestDispatcher.java │ │ │ │ │ ├── LocalClientRequestDispatcherFactory.java │ │ │ │ │ ├── MessageMediator.java │ │ │ │ │ ├── MessageParser.java │ │ │ │ │ ├── PIHandler.java │ │ │ │ │ ├── ProtocolHandler.java │ │ │ │ │ ├── RequestDispatcherDefault.java │ │ │ │ │ ├── RequestDispatcherRegistry.java │ │ │ │ │ ├── RequestId.java │ │ │ │ │ ├── RetryType.java │ │ │ │ │ ├── ServerRequestDispatcher.java │ │ │ │ │ └── protocol.zargo │ │ │ │ │ ├── resolver │ │ │ │ │ ├── LocalResolver.java │ │ │ │ │ ├── Resolver.java │ │ │ │ │ └── ResolverDefault.java │ │ │ │ │ ├── servicecontext │ │ │ │ │ ├── CodeSetServiceContext.java │ │ │ │ │ ├── MaxStreamFormatVersionServiceContext.java │ │ │ │ │ ├── ORBVersionServiceContext.java │ │ │ │ │ ├── SendingContextServiceContext.java │ │ │ │ │ ├── ServiceContext.java │ │ │ │ │ ├── ServiceContextBase.java │ │ │ │ │ ├── ServiceContextDefaults.java │ │ │ │ │ ├── ServiceContextFactoryRegistry.java │ │ │ │ │ ├── ServiceContexts.java │ │ │ │ │ ├── ServiceContextsCache.java │ │ │ │ │ ├── UEInfoServiceContext.java │ │ │ │ │ └── UnknownServiceContext.java │ │ │ │ │ ├── trace │ │ │ │ │ ├── Cdr.java │ │ │ │ │ ├── CdrRead.java │ │ │ │ │ ├── CdrWrite.java │ │ │ │ │ ├── DynamicType.java │ │ │ │ │ ├── Folb.java │ │ │ │ │ ├── Giop.java │ │ │ │ │ ├── IsLocal.java │ │ │ │ │ ├── MonitorRead.java │ │ │ │ │ ├── MonitorWrite.java │ │ │ │ │ ├── Naming.java │ │ │ │ │ ├── OrbLifeCycle.java │ │ │ │ │ ├── Orbd.java │ │ │ │ │ ├── Osgi.java │ │ │ │ │ ├── Poa.java │ │ │ │ │ ├── PoaFSM.java │ │ │ │ │ ├── PrimitiveRead.java │ │ │ │ │ ├── PrimitiveWrite.java │ │ │ │ │ ├── Shutdown.java │ │ │ │ │ ├── StreamFormatVersion.java │ │ │ │ │ ├── Subcontract.java │ │ │ │ │ ├── TraceInterceptor.java │ │ │ │ │ ├── TraceServiceContext.java │ │ │ │ │ ├── TraceValueHandler.java │ │ │ │ │ ├── TransientObjectManager.java │ │ │ │ │ ├── Transport.java │ │ │ │ │ ├── ValueHandlerRead.java │ │ │ │ │ └── ValueHandlerWrite.java │ │ │ │ │ └── transport │ │ │ │ │ ├── Acceptor.java │ │ │ │ │ ├── ByteBufferPool.java │ │ │ │ │ ├── Connection.java │ │ │ │ │ ├── ConnectionCache.java │ │ │ │ │ ├── ContactInfo.java │ │ │ │ │ ├── ContactInfoList.java │ │ │ │ │ ├── ContactInfoListFactory.java │ │ │ │ │ ├── ContactInfoListIterator.java │ │ │ │ │ ├── EventHandler.java │ │ │ │ │ ├── IIOPPrimaryToContactInfo.java │ │ │ │ │ ├── IORToSocketInfo.java │ │ │ │ │ ├── IORTransformer.java │ │ │ │ │ ├── InboundConnectionCache.java │ │ │ │ │ ├── ListenerThread.java │ │ │ │ │ ├── MessageData.java │ │ │ │ │ ├── MessageTraceManager.java │ │ │ │ │ ├── ORBSocketFactory.java │ │ │ │ │ ├── OutboundConnectionCache.java │ │ │ │ │ ├── ReaderThread.java │ │ │ │ │ ├── ResponseWaitingRoom.java │ │ │ │ │ ├── Selector.java │ │ │ │ │ ├── SocketInfo.java │ │ │ │ │ ├── TcpTimeouts.java │ │ │ │ │ ├── TemporarySelectorState.java │ │ │ │ │ ├── TransportDefault.java │ │ │ │ │ ├── TransportManager.java │ │ │ │ │ ├── concurrent │ │ │ │ │ ├── ConcurrentQueue.java │ │ │ │ │ └── ConcurrentQueueFactory.java │ │ │ │ │ └── connection │ │ │ │ │ ├── Connection.java │ │ │ │ │ ├── ConnectionCache.java │ │ │ │ │ ├── ConnectionCacheFactory.java │ │ │ │ │ ├── ConnectionFinder.java │ │ │ │ │ ├── ContactInfo.java │ │ │ │ │ ├── InboundConnectionCache.java │ │ │ │ │ └── OutboundConnectionCache.java │ │ │ │ └── org │ │ │ │ └── omg │ │ │ │ ├── CORBA │ │ │ │ ├── AttrDescriptionSeqHelper.java │ │ │ │ ├── AttributeDescription.java │ │ │ │ ├── AttributeDescriptionHelper.java │ │ │ │ ├── AttributeMode.java │ │ │ │ ├── AttributeModeHelper.java │ │ │ │ ├── ContextIdSeqHelper.java │ │ │ │ ├── ContextIdentifierHelper.java │ │ │ │ ├── DefinitionKindHelper.java │ │ │ │ ├── ExcDescriptionSeqHelper.java │ │ │ │ ├── ExceptionDescription.java │ │ │ │ ├── ExceptionDescriptionHelper.java │ │ │ │ ├── IDLTypeHelper.java │ │ │ │ ├── IDLTypeOperations.java │ │ │ │ ├── IRObjectOperations.java │ │ │ │ ├── IdentifierHelper.java │ │ │ │ ├── Initializer.java │ │ │ │ ├── InitializerHelper.java │ │ │ │ ├── InitializerSeqHelper.java │ │ │ │ ├── OpDescriptionSeqHelper.java │ │ │ │ ├── OperationDescription.java │ │ │ │ ├── OperationDescriptionHelper.java │ │ │ │ ├── OperationMode.java │ │ │ │ ├── OperationModeHelper.java │ │ │ │ ├── ParDescriptionSeqHelper.java │ │ │ │ ├── ParameterDescription.java │ │ │ │ ├── ParameterDescriptionHelper.java │ │ │ │ ├── ParameterMode.java │ │ │ │ ├── ParameterModeHelper.java │ │ │ │ ├── Repository.java │ │ │ │ ├── RepositoryHelper.java │ │ │ │ ├── RepositoryIdHelper.java │ │ │ │ ├── RepositoryIdSeqHelper.java │ │ │ │ ├── StructMemberHelper.java │ │ │ │ ├── StructMemberSeqHelper.java │ │ │ │ ├── ValueDefPackage │ │ │ │ │ ├── FullValueDescription.java │ │ │ │ │ └── FullValueDescriptionHelper.java │ │ │ │ ├── ValueMemberHelper.java │ │ │ │ ├── ValueMemberSeqHelper.java │ │ │ │ ├── VersionSpecHelper.java │ │ │ │ ├── VisibilityHelper.java │ │ │ │ └── portable │ │ │ │ │ └── ValueHelper.java │ │ │ │ └── SendingContext │ │ │ │ ├── CodeBase.java │ │ │ │ ├── CodeBaseHelper.java │ │ │ │ ├── CodeBaseOperations.java │ │ │ │ ├── CodeBasePackage │ │ │ │ ├── URLHelper.java │ │ │ │ ├── URLSeqHelper.java │ │ │ │ └── ValueDescSeqHelper.java │ │ │ │ ├── _CodeBaseImplBase.java │ │ │ │ └── _CodeBaseStub.java │ │ ├── module-info.java │ │ └── org │ │ │ └── glassfish │ │ │ ├── corba │ │ │ ├── BridgePermission.java │ │ │ ├── org │ │ │ │ └── omg │ │ │ │ │ └── CORBA │ │ │ │ │ └── _IDLTypeStub.java │ │ │ └── package.html │ │ │ └── jndi │ │ │ ├── cosnaming │ │ │ ├── CNBindingEnumeration.java │ │ │ ├── CNCtx.java │ │ │ ├── CNCtxFactory.java │ │ │ ├── CNNameParser.java │ │ │ ├── CorbanameUrl.java │ │ │ ├── ExceptionMapper.java │ │ │ ├── IiopUrl.java │ │ │ ├── OrbReuseTracker.java │ │ │ ├── RemoteToCorba.java │ │ │ └── jndiprovider.properties │ │ │ └── toolkit │ │ │ └── corba │ │ │ └── CorbaUtils.java │ └── resources │ │ └── com │ │ └── sun │ │ └── corba │ │ └── ee │ │ └── impl │ │ └── resources │ │ ├── sunorb.properties │ │ ├── sunorb_de.properties │ │ ├── sunorb_es.properties │ │ ├── sunorb_fr.properties │ │ ├── sunorb_it.properties │ │ ├── sunorb_ja.properties │ │ ├── sunorb_ko.properties │ │ ├── sunorb_sv.properties │ │ ├── sunorb_zh_CN.properties │ │ └── sunorb_zh_TW.properties │ └── test │ ├── idl │ └── codec.idl │ └── java │ ├── com │ └── sun │ │ └── corba │ │ └── ee │ │ ├── StandardClassesTest.java │ │ ├── impl │ │ ├── corba │ │ │ ├── AnyEqualityTest.java │ │ │ ├── AnyImplTest.java │ │ │ ├── Enum1.java │ │ │ ├── Enum1Helper.java │ │ │ └── javax │ │ │ │ └── TestTransactionRemoteException.java │ │ ├── encoding │ │ │ ├── AllTypesFields.java │ │ │ ├── CDRInputTest.java │ │ │ ├── CDRInputValueTest.java │ │ │ ├── CDRMemoryManagementTest.java │ │ │ ├── CDROutputTest.java │ │ │ ├── CDROutputValueTest.java │ │ │ ├── ComplexValue.java │ │ │ ├── CustomMarshalledValue.java │ │ │ ├── CustomReadClass.java │ │ │ ├── CustomWriteClass.java │ │ │ ├── DerivedValue.java │ │ │ ├── EncodingTestBase.java │ │ │ ├── Enum1.java │ │ │ ├── FVDBuilder.java │ │ │ ├── FVDInputValueTest.java │ │ │ ├── FieldsIOValueTest.java │ │ │ ├── Gender.java │ │ │ ├── IDLValue.java │ │ │ ├── IDLValueHelper.java │ │ │ ├── Profession.java │ │ │ ├── Value1.java │ │ │ ├── Value1DefaultFactory.java │ │ │ ├── Value1Helper.java │ │ │ ├── Value2.java │ │ │ └── ValueTestBase.java │ │ ├── folb │ │ │ ├── GroupManagerServiceInterceptorsTest.java │ │ │ ├── StubObject.java │ │ │ └── TestIOR.java │ │ ├── interceptors │ │ │ └── CodecFactoryImplTest.java │ │ ├── io │ │ │ └── ValueHandlerTest.java │ │ ├── ior │ │ │ ├── IORImplTest.java │ │ │ └── iiop │ │ │ │ ├── IIOPProfileImplTest.java │ │ │ │ └── IIOPProfileTemplateImplTest.java │ │ ├── presentation │ │ │ └── rmi │ │ │ │ ├── JNDIStateFactoryImplTest.java │ │ │ │ ├── StubInvocationHandlerImplTest.java │ │ │ │ ├── TestIDLNameTranslator.java │ │ │ │ └── TestRMIIDLTypes.java │ │ ├── protocol │ │ │ ├── ClientRequestDispatcherImplTest.java │ │ │ └── MessageParserTest.java │ │ └── transport │ │ │ ├── ConnectionImplTest.java │ │ │ ├── SelectorImplTest.java │ │ │ ├── SocketChannelReaderTest.java │ │ │ └── TransportTestBase.java │ │ └── spi │ │ ├── ior │ │ └── iiop │ │ │ └── IIOPFactoriesTest.java │ │ └── presentation │ │ └── rmi │ │ └── PresentationDefaultsTest.java │ ├── corba │ └── dynamicrmiiiop │ │ └── testclasses │ │ ├── ContainerClash1.java │ │ ├── ContainerClash2.java │ │ ├── Default.java │ │ ├── IDLCaseSensitivityTest.java │ │ ├── IDLComboTest1.java │ │ ├── IDLDefaultTest.java │ │ ├── IDLIdentifiersTest.java │ │ ├── IDLKeywordsTest.java │ │ ├── IDLLeadingUnderscoresTest.java │ │ ├── IDLMultipleInterfaceTest.java │ │ ├── IDLOverloadedTest.java │ │ ├── IDLPropertiesTest.java │ │ ├── InvalidEntities.java │ │ ├── InvalidExceptions.java │ │ ├── InvalidObjRefs.java │ │ ├── InvalidRemotes.java │ │ ├── InvalidValues.java │ │ ├── Raises.java │ │ ├── TestStruct.java │ │ ├── ValidEntities.java │ │ ├── ValidExceptions.java │ │ ├── ValidObjRefs.java │ │ ├── ValidRemotes.java │ │ ├── ValidValues.java │ │ ├── _ContainerClash3.java │ │ ├── _ContainerClash4.java │ │ ├── _Default.java │ │ ├── _Raises.java │ │ ├── _upackage │ │ └── Foo.java │ │ └── typedef │ │ └── Foo.java │ └── org │ └── glassfish │ └── corba │ └── testutils │ ├── HexBuffer.java │ └── StubCorbaObject.java ├── pom.xml ├── rmic ├── README ├── pom.xml └── src │ ├── main │ ├── java │ │ ├── module-info.java │ │ ├── org │ │ │ └── glassfish │ │ │ │ └── rmic │ │ │ │ ├── BatchEnvironment.java │ │ │ │ ├── BatchEnvironmentError.java │ │ │ │ ├── Constants.java │ │ │ │ ├── Generator.java │ │ │ │ ├── IndentingWriter.java │ │ │ │ ├── Main.java │ │ │ │ ├── Names.java │ │ │ │ ├── RMIConstants.java │ │ │ │ ├── RMIGenerator.java │ │ │ │ ├── RemoteClass.java │ │ │ │ ├── TypeCode.java │ │ │ │ ├── Util.java │ │ │ │ ├── asm │ │ │ │ ├── AsmClass.java │ │ │ │ ├── AsmClassFactory.java │ │ │ │ ├── AsmMemberDefinition.java │ │ │ │ └── TypeFactory.java │ │ │ │ ├── iiop │ │ │ │ ├── AbstractType.java │ │ │ │ ├── ArrayType.java │ │ │ │ ├── BatchEnvironment.java │ │ │ │ ├── ClassPathLoader.java │ │ │ │ ├── ClassType.java │ │ │ │ ├── CompoundType.java │ │ │ │ ├── Constants.java │ │ │ │ ├── ContextElement.java │ │ │ │ ├── ContextStack.java │ │ │ │ ├── DirectoryLoader.java │ │ │ │ ├── Generator.java │ │ │ │ ├── IDLGenerator.java │ │ │ │ ├── IDLNames.java │ │ │ │ ├── ImplementationType.java │ │ │ │ ├── InterfaceType.java │ │ │ │ ├── NCClassType.java │ │ │ │ ├── NCInterfaceType.java │ │ │ │ ├── NameContext.java │ │ │ │ ├── PrimitiveType.java │ │ │ │ ├── PrintGenerator.java │ │ │ │ ├── RemoteType.java │ │ │ │ ├── SpecialClassType.java │ │ │ │ ├── SpecialInterfaceType.java │ │ │ │ ├── StaticStringsHash.java │ │ │ │ ├── StubGenerator.java │ │ │ │ ├── Type.java │ │ │ │ ├── Util.java │ │ │ │ └── ValueType.java │ │ │ │ └── tools │ │ │ │ ├── asm │ │ │ │ ├── ArrayData.java │ │ │ │ ├── Assembler.java │ │ │ │ ├── CatchData.java │ │ │ │ ├── ClassConstantData.java │ │ │ │ ├── ConstantPool.java │ │ │ │ ├── ConstantPoolData.java │ │ │ │ ├── Cover.java │ │ │ │ ├── FieldConstantData.java │ │ │ │ ├── Instruction.java │ │ │ │ ├── Label.java │ │ │ │ ├── LocalVariable.java │ │ │ │ ├── LocalVariableTable.java │ │ │ │ ├── NameAndTypeConstantData.java │ │ │ │ ├── NameAndTypeData.java │ │ │ │ ├── NumberConstantData.java │ │ │ │ ├── StringConstantData.java │ │ │ │ ├── StringExpressionConstantData.java │ │ │ │ ├── SwitchData.java │ │ │ │ └── TryData.java │ │ │ │ ├── binaryclass │ │ │ │ ├── BinaryAttribute.java │ │ │ │ ├── BinaryClass.java │ │ │ │ ├── BinaryClassFactory.java │ │ │ │ ├── BinaryConstantPool.java │ │ │ │ └── BinaryMember.java │ │ │ │ ├── java │ │ │ │ ├── AmbiguousClass.java │ │ │ │ ├── AmbiguousMember.java │ │ │ │ ├── ArrayType.java │ │ │ │ ├── ClassDeclaration.java │ │ │ │ ├── ClassDefinition.java │ │ │ │ ├── ClassDefinitionFactory.java │ │ │ │ ├── ClassFile.java │ │ │ │ ├── ClassNotFound.java │ │ │ │ ├── ClassPath.java │ │ │ │ ├── ClassType.java │ │ │ │ ├── CompilerError.java │ │ │ │ ├── Constants.java │ │ │ │ ├── Environment.java │ │ │ │ ├── FileClassFile.java │ │ │ │ ├── Identifier.java │ │ │ │ ├── IdentifierToken.java │ │ │ │ ├── Imports.java │ │ │ │ ├── MemberDefinition.java │ │ │ │ ├── MethodSet.java │ │ │ │ ├── MethodType.java │ │ │ │ ├── Package.java │ │ │ │ ├── Parser.java │ │ │ │ ├── ParserActions.java │ │ │ │ ├── PathClassFile.java │ │ │ │ ├── RmicUncheckedIOException.java │ │ │ │ ├── RuntimeConstants.java │ │ │ │ ├── Scanner.java │ │ │ │ ├── ScannerInputReader.java │ │ │ │ ├── SyntaxError.java │ │ │ │ ├── Type.java │ │ │ │ └── ZipClassFile.java │ │ │ │ ├── javac │ │ │ │ ├── BatchEnvironment.java │ │ │ │ ├── BatchParser.java │ │ │ │ ├── CompilerMember.java │ │ │ │ ├── ErrorConsumer.java │ │ │ │ ├── ErrorMessage.java │ │ │ │ ├── Main.java │ │ │ │ ├── SourceClass.java │ │ │ │ └── SourceMember.java │ │ │ │ ├── tree │ │ │ │ ├── AddExpression.java │ │ │ │ ├── AndExpression.java │ │ │ │ ├── ArrayAccessExpression.java │ │ │ │ ├── ArrayExpression.java │ │ │ │ ├── AssignAddExpression.java │ │ │ │ ├── AssignBitAndExpression.java │ │ │ │ ├── AssignBitOrExpression.java │ │ │ │ ├── AssignBitXorExpression.java │ │ │ │ ├── AssignDivideExpression.java │ │ │ │ ├── AssignExpression.java │ │ │ │ ├── AssignMultiplyExpression.java │ │ │ │ ├── AssignOpExpression.java │ │ │ │ ├── AssignRemainderExpression.java │ │ │ │ ├── AssignShiftLeftExpression.java │ │ │ │ ├── AssignShiftRightExpression.java │ │ │ │ ├── AssignSubtractExpression.java │ │ │ │ ├── AssignUnsignedShiftRightExpression.java │ │ │ │ ├── BinaryArithmeticExpression.java │ │ │ │ ├── BinaryAssignExpression.java │ │ │ │ ├── BinaryBitExpression.java │ │ │ │ ├── BinaryCompareExpression.java │ │ │ │ ├── BinaryEqualityExpression.java │ │ │ │ ├── BinaryExpression.java │ │ │ │ ├── BinaryLogicalExpression.java │ │ │ │ ├── BinaryShiftExpression.java │ │ │ │ ├── BitAndExpression.java │ │ │ │ ├── BitNotExpression.java │ │ │ │ ├── BitOrExpression.java │ │ │ │ ├── BitXorExpression.java │ │ │ │ ├── BooleanExpression.java │ │ │ │ ├── BreakStatement.java │ │ │ │ ├── ByteExpression.java │ │ │ │ ├── CaseStatement.java │ │ │ │ ├── CastExpression.java │ │ │ │ ├── CatchStatement.java │ │ │ │ ├── CharExpression.java │ │ │ │ ├── CheckContext.java │ │ │ │ ├── CodeContext.java │ │ │ │ ├── CommaExpression.java │ │ │ │ ├── CompoundStatement.java │ │ │ │ ├── ConditionVars.java │ │ │ │ ├── ConditionalExpression.java │ │ │ │ ├── ConstantExpression.java │ │ │ │ ├── Context.java │ │ │ │ ├── ContinueStatement.java │ │ │ │ ├── ConvertExpression.java │ │ │ │ ├── DeclarationStatement.java │ │ │ │ ├── DivRemExpression.java │ │ │ │ ├── DivideExpression.java │ │ │ │ ├── DoStatement.java │ │ │ │ ├── DoubleExpression.java │ │ │ │ ├── EqualExpression.java │ │ │ │ ├── ExprExpression.java │ │ │ │ ├── Expression.java │ │ │ │ ├── ExpressionStatement.java │ │ │ │ ├── FieldExpression.java │ │ │ │ ├── FieldUpdater.java │ │ │ │ ├── FinallyStatement.java │ │ │ │ ├── FloatExpression.java │ │ │ │ ├── ForStatement.java │ │ │ │ ├── GreaterExpression.java │ │ │ │ ├── GreaterOrEqualExpression.java │ │ │ │ ├── IdentifierExpression.java │ │ │ │ ├── IfStatement.java │ │ │ │ ├── IncDecExpression.java │ │ │ │ ├── InlineMethodExpression.java │ │ │ │ ├── InlineNewInstanceExpression.java │ │ │ │ ├── InlineReturnStatement.java │ │ │ │ ├── InstanceOfExpression.java │ │ │ │ ├── IntExpression.java │ │ │ │ ├── IntegerExpression.java │ │ │ │ ├── LengthExpression.java │ │ │ │ ├── LessExpression.java │ │ │ │ ├── LessOrEqualExpression.java │ │ │ │ ├── LocalMember.java │ │ │ │ ├── LongExpression.java │ │ │ │ ├── MethodExpression.java │ │ │ │ ├── MultiplyExpression.java │ │ │ │ ├── NaryExpression.java │ │ │ │ ├── NegativeExpression.java │ │ │ │ ├── NewArrayExpression.java │ │ │ │ ├── NewInstanceExpression.java │ │ │ │ ├── Node.java │ │ │ │ ├── NotEqualExpression.java │ │ │ │ ├── NotExpression.java │ │ │ │ ├── NullExpression.java │ │ │ │ ├── OrExpression.java │ │ │ │ ├── PositiveExpression.java │ │ │ │ ├── PostDecExpression.java │ │ │ │ ├── PostIncExpression.java │ │ │ │ ├── PreDecExpression.java │ │ │ │ ├── PreIncExpression.java │ │ │ │ ├── RemainderExpression.java │ │ │ │ ├── ReturnStatement.java │ │ │ │ ├── ShiftLeftExpression.java │ │ │ │ ├── ShiftRightExpression.java │ │ │ │ ├── ShortExpression.java │ │ │ │ ├── Statement.java │ │ │ │ ├── StringExpression.java │ │ │ │ ├── SubtractExpression.java │ │ │ │ ├── SuperExpression.java │ │ │ │ ├── SwitchStatement.java │ │ │ │ ├── SynchronizedStatement.java │ │ │ │ ├── ThisExpression.java │ │ │ │ ├── ThrowStatement.java │ │ │ │ ├── TryStatement.java │ │ │ │ ├── TypeExpression.java │ │ │ │ ├── UnaryExpression.java │ │ │ │ ├── UnsignedShiftRightExpression.java │ │ │ │ ├── UplevelReference.java │ │ │ │ ├── VarDeclarationStatement.java │ │ │ │ ├── Vset.java │ │ │ │ └── WhileStatement.java │ │ │ │ └── util │ │ │ │ ├── CommandLine.java │ │ │ │ └── ModifierFilter.java │ │ └── sun │ │ │ └── rmi │ │ │ └── rmic │ │ │ └── Main.java │ └── resources │ │ └── org │ │ └── glassfish │ │ └── rmic │ │ ├── resources │ │ ├── rmic.properties │ │ ├── rmic_ja.properties │ │ └── rmic_zh_CN.properties │ │ └── tools │ │ └── javac │ │ └── resources │ │ ├── javac.properties │ │ ├── javac_ja.properties │ │ └── javac_zh_CN.properties │ └── test │ ├── README │ ├── java │ ├── TopLevelClass.java │ └── org │ │ └── glassfish │ │ └── rmic │ │ ├── BatchEnvironmentTest.java │ │ ├── MainTest.java │ │ ├── RmicGenerationTest.java │ │ ├── TestUtils.java │ │ ├── asm │ │ ├── AsmClassFactoryTest.java │ │ └── TypeFactoryTest.java │ │ ├── classes │ │ ├── covariantReturn │ │ │ ├── Animal.java │ │ │ ├── AnimalFinder.java │ │ │ ├── Dog.java │ │ │ └── DogFinder.java │ │ ├── errorClasses │ │ │ ├── InterfaceWithNonRemoteMethod.java │ │ │ ├── NotRemoteClass.java │ │ │ └── PackageInterface.java │ │ ├── exceptiondetailsc │ │ │ ├── ExceptionSource.java │ │ │ ├── ExceptionSourceServantPOA.java │ │ │ └── RmiIException.java │ │ ├── giopheaderpadding │ │ │ ├── Foo.java │ │ │ └── FooServantPOA.java │ │ ├── hcks │ │ │ ├── RmiII.java │ │ │ ├── RmiIIServant.java │ │ │ ├── RmiIIServantPOA.java │ │ │ └── RmiIMyException.java │ │ ├── inneraccess │ │ │ ├── ColorChecker.java │ │ │ └── Rainbow.java │ │ ├── islocal │ │ │ ├── MessageBuilder.java │ │ │ └── MessageBuilderServantPOA.java │ │ ├── nestedClasses │ │ │ └── TwoLevelNested.java │ │ ├── preinvokepostinvoke │ │ │ ├── Interface.java │ │ │ └── MyServant.java │ │ ├── primitives │ │ │ ├── InterfaceWithConstantArray.java │ │ │ ├── InterfaceWithNonPrimitiveConstant.java │ │ │ ├── NonFinalInterface.java │ │ │ ├── RmiTestRemote.java │ │ │ └── RmiTestRemoteImpl.java │ │ ├── rmipoacounter │ │ │ ├── CounterIF.java │ │ │ └── CounterImpl.java │ │ └── systemexceptions │ │ │ ├── Server.java │ │ │ ├── ServerInvoker.java │ │ │ └── ServerInvokerServantPOA.java │ │ └── tools │ │ ├── binaryclass │ │ └── BinaryClassTest.java │ │ ├── java │ │ ├── ClassDefinitionFactoryTest.java │ │ └── ClassPathTest.java │ │ └── javac │ │ └── BatchEnvironmentTest.java │ └── masters │ ├── README │ ├── idl │ └── org │ │ └── glassfish │ │ └── rmic │ │ └── classes │ │ └── inneraccess │ │ └── Rainbow__CheckerImpl.idl │ ├── primitives │ └── org │ │ └── glassfish │ │ └── rmic │ │ └── classes │ │ └── primitives │ │ ├── _RmiTestRemoteImpl_Tie.java │ │ └── _RmiTestRemote_Stub.java │ ├── stub_from_interface │ └── org │ │ └── glassfish │ │ └── rmic │ │ └── classes │ │ └── hcks │ │ └── _RmiII_Stub.java │ ├── with_poas │ └── org │ │ └── glassfish │ │ └── rmic │ │ └── classes │ │ ├── exceptiondetailsc │ │ ├── _ExceptionSourceServantPOA_Tie.java │ │ └── _ExceptionSource_Stub.java │ │ ├── giopheaderpadding │ │ ├── _FooServantPOA_Tie.java │ │ └── _Foo_Stub.java │ │ ├── hcks │ │ ├── _RmiIIServantPOA_Tie.java │ │ └── _RmiII_Stub.java │ │ ├── islocal │ │ ├── _MessageBuilderServantPOA_Tie.java │ │ └── _MessageBuilder_Stub.java │ │ ├── preinvokepostinvoke │ │ ├── _Interface_Stub.java │ │ └── _MyServant_Tie.java │ │ ├── rmipoacounter │ │ ├── _CounterIF_Stub.java │ │ └── _CounterImpl_Tie.java │ │ └── systemexceptions │ │ ├── _ServerInvokerServantPOA_Tie.java │ │ └── _ServerInvoker_Stub.java │ └── without_poas │ └── org │ └── glassfish │ └── rmic │ └── classes │ └── hcks │ ├── _RmiIIServant_Tie.java │ └── _RmiII_Stub.java ├── src ├── share │ └── classes │ │ ├── com │ │ └── sun │ │ │ ├── corba │ │ │ └── ee │ │ │ │ ├── GiopIDL │ │ │ │ ├── GIOP.idl │ │ │ │ └── messages.idl │ │ │ │ ├── impl │ │ │ │ └── osgi │ │ │ │ │ └── main │ │ │ │ │ └── ORBFactoryTest.java │ │ │ │ ├── internal │ │ │ │ └── io │ │ │ │ │ ├── IIOPInputStream.java │ │ │ │ │ ├── IIOPOutputStream.java │ │ │ │ │ ├── LibraryManager.java │ │ │ │ │ └── ObjectStreamClass.java │ │ │ │ ├── pept │ │ │ │ └── package.html │ │ │ │ └── tool │ │ │ │ ├── IORDump.java │ │ │ │ └── OrbPing.java │ │ │ └── tools │ │ │ └── corba │ │ │ └── se │ │ │ └── timer │ │ │ ├── timing.dtd │ │ │ └── timing.xml │ │ ├── org │ │ └── omg │ │ │ ├── CORBA │ │ │ ├── OctetSeqHelper.java │ │ │ ├── OctetSeqHolder.java │ │ │ ├── PolicyError.java │ │ │ └── RepositoryIdHelper.java │ │ │ ├── CosNaming │ │ │ ├── _BindingIteratorImplBase.java │ │ │ ├── _NamingContextImplBase.java │ │ │ └── package.html │ │ │ ├── CosTSPortability │ │ │ └── CosTSPortability.idl │ │ │ ├── CosTransactions │ │ │ ├── CORBAX.idl │ │ │ ├── CurrentHelper.java │ │ │ └── CurrentHolder.java │ │ │ ├── DynamicAny │ │ │ ├── DynAnyFactoryPackage │ │ │ │ └── package.html │ │ │ ├── DynAnyPackage │ │ │ │ └── package.html │ │ │ └── package.html │ │ │ ├── PortableInterceptor │ │ │ ├── ORBInitInfoPackage │ │ │ │ └── package.html │ │ │ └── package.html │ │ │ └── PortableServer │ │ │ ├── CurrentHelper.java │ │ │ ├── CurrentPackage │ │ │ └── package.html │ │ │ ├── DynamicImplementation.java │ │ │ ├── POAHelper.java │ │ │ ├── POAManagerPackage │ │ │ └── package.html │ │ │ ├── POAPackage │ │ │ └── package.html │ │ │ ├── Servant.java │ │ │ ├── ServantLocatorPackage │ │ │ ├── CookieHolder.java │ │ │ └── package.html │ │ │ ├── package.html │ │ │ └── portable │ │ │ ├── Delegate.java │ │ │ └── package.html │ │ └── sun │ │ └── rmi │ │ └── rmic │ │ ├── BatchEnvironment.java │ │ ├── Constants.java │ │ ├── Generator.java │ │ ├── IndentingWriter.java │ │ ├── Main.java │ │ ├── Names.java │ │ ├── RMIConstants.java │ │ ├── RMIGenerator.java │ │ ├── RemoteClass.java │ │ ├── Util.java │ │ ├── iiop │ │ ├── AbstractType.java │ │ ├── ArrayType.java │ │ ├── BatchEnvironment.java │ │ ├── ClassPathLoader.java │ │ ├── ClassType.java │ │ ├── CompoundType.java │ │ ├── Constants.java │ │ ├── ContextElement.java │ │ ├── ContextStack.java │ │ ├── DirectoryLoader.java │ │ ├── Generator.java │ │ ├── IDLGenerator.java │ │ ├── IDLNames.java │ │ ├── ImplementationType.java │ │ ├── InterfaceType.java │ │ ├── NCClassType.java │ │ ├── NCInterfaceType.java │ │ ├── NameContext.java │ │ ├── PrimitiveType.java │ │ ├── PrintGenerator.java │ │ ├── RemoteType.java │ │ ├── SpecialClassType.java │ │ ├── SpecialInterfaceType.java │ │ ├── StaticStringsHash.java │ │ ├── StubGenerator.java │ │ ├── Type.java │ │ ├── Util.java │ │ └── ValueType.java │ │ └── resources │ │ └── rmic.properties └── site │ └── apt │ └── index.apt ├── test ├── .cvsignore ├── disabled │ └── performance │ │ ├── eesample │ │ ├── SampleData.java │ │ ├── StandardTest.java │ │ ├── echoArray.xml │ │ ├── echoArrayFragmentSize.xml │ │ ├── results_with_fragment_size.txt │ │ ├── test.xml │ │ └── wspex │ │ │ ├── Address.java │ │ │ ├── ArrayOfLineItem.java │ │ │ ├── Customer.java │ │ │ ├── EchoOrderRequest.java │ │ │ ├── EchoOrderResponse.java │ │ │ ├── Item.java │ │ │ ├── ItemArrayType.java │ │ │ ├── LineItem.java │ │ │ ├── Location.java │ │ │ ├── Order.java │ │ │ ├── Struct.java │ │ │ ├── Synthetic.java │ │ │ └── components │ │ │ └── OrderBL.java │ │ └── simpleperf │ │ └── counterClient.java └── src │ └── share │ └── classes │ ├── alpha │ └── bravo │ │ ├── A.idlref │ │ ├── A.java │ │ ├── AB.idlref │ │ ├── AB.java │ │ ├── B.idlref │ │ ├── B.java │ │ ├── Bear.idlref │ │ ├── Bear.java │ │ ├── Charlie.idlref │ │ ├── Charlie.java │ │ ├── DuckBill.idlref │ │ ├── DuckBill.java │ │ ├── Hedgehog.idlref │ │ ├── Hedgehog.java │ │ ├── Kangaroo.idlref │ │ ├── Kangaroo.java │ │ ├── Mammal.idlref │ │ ├── Mammal.java │ │ ├── Multi.java │ │ ├── Platypus.idlref │ │ ├── Platypus.java │ │ ├── Platypus__Marsupial.idlref │ │ ├── PolarBear.idlref │ │ ├── PolarBear.java │ │ ├── Porcupine.idlref │ │ ├── Porcupine.java │ │ ├── Wallaby.idlref │ │ ├── Wallaby.java │ │ ├── Warthog.idlref │ │ ├── Warthog.java │ │ ├── Wombat.idlref │ │ └── Wombat.java │ ├── corba │ ├── CORBATests.tdesc │ ├── CopyObjectTests.tdesc │ ├── acceptorandcontactinfo │ │ ├── AcceptorAndContactInfoTest.java │ │ ├── Client.java │ │ ├── ColocatedClientServer.java │ │ ├── ServantLocator.java │ │ ├── Server.java │ │ ├── rmiiI.java │ │ └── rmiiIServantPOA.java │ ├── cdrext │ │ ├── AbsTester.java │ │ ├── CDRExtTest.java │ │ ├── CheckedException.java │ │ ├── Client.java │ │ ├── CustomMarshalTester.java │ │ ├── DataCorruptedException.java │ │ ├── MarshalChecker.java │ │ ├── MarshalTester.java │ │ ├── ReplaceSubClass.java │ │ ├── ReplaceSuperClass.java │ │ ├── Server.java │ │ ├── Status.java │ │ ├── SubClass.java │ │ ├── SuperClass.java │ │ ├── TestClass.java │ │ ├── TestExternalizable.java │ │ ├── TestObject.java │ │ ├── Tester.java │ │ └── UncheckedException.java │ ├── cdrstreams │ │ ├── CDRTests.java │ │ ├── Client.java │ │ ├── CustomMarshaled.java │ │ ├── GraphProcessor.java │ │ ├── GraphProcessorImpl.java │ │ ├── InvalidGraphException.java │ │ ├── MarkResetTester.java │ │ ├── Node.java │ │ └── Server.java │ ├── cmvt │ │ ├── CMVTTest.java │ │ ├── Client.java │ │ ├── CustomMarshalledValueType.java │ │ ├── GIOPCombo.java │ │ ├── GIOPComboImpl.java │ │ └── Server.java │ ├── codebase │ │ ├── Client.java │ │ ├── CodeBaseTest.java │ │ ├── NoSecurityManager.java │ │ ├── Server.java │ │ ├── TestValue.java │ │ ├── Tester.java │ │ └── WebServer.java │ ├── connectioncache │ │ ├── Client.java │ │ ├── ConnectionCacheStressTest.java │ │ ├── ConnectionCacheTest.java │ │ ├── ConnectionImpl.java │ │ ├── ContactInfoImpl.java │ │ ├── RandomDelay.java │ │ └── StressClient.java │ ├── connections │ │ ├── Client.java │ │ ├── Client1.java │ │ ├── Client2.java │ │ ├── ConnectionStatistics.java │ │ ├── ConnectionsTest.java │ │ ├── RemoteInterface.java │ │ ├── RemoteService.java │ │ ├── Server.java │ │ ├── Server1.java │ │ ├── Server2.java │ │ └── Struct.java │ ├── copyobjectpolicy │ │ ├── Client.java │ │ ├── CopyObjectPolicyTest.java │ │ ├── Echo.java │ │ ├── EchoImpl.java │ │ └── UserConfigurator.java │ ├── custom │ │ ├── ArrayListNode.java │ │ ├── CharGenerator.java │ │ ├── Client.java │ │ ├── CustomTest.java │ │ ├── Node.java │ │ ├── Server.java │ │ ├── Verifier.java │ │ └── VerifierImpl.java │ ├── dynamicrmiiiop │ │ ├── Client.java │ │ ├── DynamicRmiIIOPTest.java │ │ ├── TestClientDelegate.java │ │ ├── TestCodegenProxyCreator.java │ │ ├── TestTransport.java │ │ └── testclasses │ │ │ ├── A.java │ │ │ ├── B.java │ │ │ ├── C.java │ │ │ ├── C1.java │ │ │ ├── C2.java │ │ │ ├── C3.java │ │ │ ├── C4.java │ │ │ ├── C5.java │ │ │ ├── C6.java │ │ │ ├── D.java │ │ │ ├── DMMImplTestClasses.java │ │ │ ├── DefaultInterface.java │ │ │ ├── E.java │ │ │ ├── F.java │ │ │ ├── G.java │ │ │ ├── H.java │ │ │ ├── MyApplicationException.java │ │ │ ├── MyApplicationExceptionBase.java │ │ │ ├── TieTest.java │ │ │ ├── TieTestImpl.java │ │ │ └── exception │ │ │ └── TestException.java │ ├── enuminterop │ │ ├── Client.java │ │ ├── Echo.java │ │ ├── EchoServant.java │ │ ├── EnumTest.java │ │ └── Server.java │ ├── example │ │ ├── Client.java │ │ ├── Example.java │ │ ├── Server.java │ │ └── hello.idl │ ├── folb │ │ ├── CSIv2SSLTaggedComponentHandlerImpl.java │ │ ├── Client.java │ │ ├── ClientBase.java │ │ ├── ClientCircular.java │ │ ├── ClientMulti.java │ │ ├── ClientWaitTimeout.java │ │ ├── Common.java │ │ ├── EchoTest.java │ │ ├── EchoTestServant.java │ │ ├── FolbTest.java │ │ ├── GroupInfoServiceImpl.java │ │ ├── GroupInfoServiceTest.java │ │ ├── GroupInfoServiceTestServant.java │ │ ├── README-AS.txt │ │ ├── README.txt │ │ ├── Server.java │ │ └── TODO.txt │ ├── fragment │ │ ├── BadArrayException.java │ │ ├── Client.java │ │ ├── FragmentTest.java │ │ ├── FragmentTester.java │ │ ├── FragmentTesterImpl.java │ │ └── Server.java │ ├── fragment2 │ │ ├── BadArrayException.java │ │ ├── Client.java │ │ ├── FragmentTest.java │ │ ├── FragmentTester.java │ │ ├── FragmentTesterImpl.java │ │ └── Server.java │ ├── fsm │ │ ├── Client.sjava │ │ └── FSMTest.sjava │ ├── giopgen │ │ ├── Client.java │ │ ├── Common.java │ │ ├── GIOPGenTest.java │ │ ├── Server.java │ │ ├── Test.java │ │ └── TestServant.java │ ├── ior │ │ ├── Client.java │ │ └── IORTests.java │ ├── lb │ │ ├── Client.java │ │ ├── Common.java │ │ ├── LB.java │ │ ├── LBTest.java │ │ ├── Server.java │ │ ├── Test.java │ │ └── TestServant.java │ ├── lbq │ │ ├── ClientControl.java │ │ ├── CommandQueue.java │ │ ├── Common.java │ │ ├── LBControl.java │ │ ├── Server.java │ │ ├── ServerControl.java │ │ ├── ServerReporter.java │ │ ├── Test.java │ │ ├── TestServant.java │ │ └── notes.txt │ ├── legacyorbclasses │ │ ├── Client.java │ │ └── LegacyORBClassesTest.java │ ├── messagetrace │ │ ├── Client.java │ │ └── MessageTraceTest.java │ ├── misc │ │ ├── Buck.java │ │ ├── BuckPasserAL.java │ │ ├── BuckPasserV.java │ │ ├── Client.java │ │ └── MiscTest.java │ ├── mixedorb │ │ ├── Client.java │ │ ├── Echo.java │ │ ├── EchoImpl.java │ │ ├── MixedOrbTest.java │ │ └── Notes.txt │ ├── msgtypes │ │ ├── BadArrayException.java │ │ ├── Client.java │ │ ├── FragmentTester.java │ │ ├── FragmentTesterImpl.java │ │ ├── MsgTypesTest.java │ │ └── Server.java │ ├── nortel │ │ ├── Client.java │ │ ├── Echo.java │ │ ├── EchoImpl.java │ │ ├── NortelSocketFactory.java │ │ ├── Test.java │ │ └── UserInfo.java │ ├── orbconfig │ │ ├── Client.java │ │ ├── MyConfigurator.java │ │ ├── NewORBTests.java │ │ └── TestSession.java │ ├── orbconfigappserv │ │ ├── ORBConfigAppServTest.java │ │ ├── ORBInitializerImpl.java │ │ ├── ORBManager.java │ │ ├── SocketFactoryImpl.java │ │ └── UserORBConfiguratorImpl.java │ ├── ortremote │ │ ├── ORTEcho.java │ │ ├── ORTEchoImpl.java │ │ ├── ORTRemoteTest.java │ │ ├── Test.java │ │ └── TestSession.java │ ├── preinvokepostinvoke │ │ └── Server.java │ ├── prlb │ │ └── Notes.txt │ ├── resolve_deadlock │ │ ├── ResolveDeadlock.java │ │ └── ResolveDeadlockTest.java │ ├── retryplugin │ │ ├── Client.java │ │ ├── Common.java │ │ ├── README.txt │ │ ├── RetryPluginTest.java │ │ ├── Server.java │ │ ├── Test.java │ │ └── TestServant.java │ ├── rfm │ │ ├── TestClient.java │ │ └── TestRFM.java │ ├── rmic │ │ ├── A.java │ │ ├── B.java │ │ ├── C.java │ │ ├── CImpl.java │ │ └── RmicTest.java │ ├── rmipoacounter │ │ └── counterServer.java │ ├── security │ │ ├── Client.java │ │ └── PermissionTest.java │ ├── serialization │ │ ├── good │ │ │ ├── GoodRepIdTest.java │ │ │ └── ShowRepid.java │ │ ├── proxy │ │ │ ├── Client.java │ │ │ ├── Frobnicator.java │ │ │ ├── FrobnicatorProvider.java │ │ │ ├── FrobnicatorProviderBean.java │ │ │ ├── Handler.java │ │ │ ├── NoSecurityManager.java │ │ │ ├── ProxySerializationTest.java │ │ │ └── Server.java │ │ └── zerolengthstring │ │ │ ├── ClassWithZeroLengthStrings.java │ │ │ ├── MainTest.java │ │ │ └── ZeroLengthStringTest.java │ ├── shutdown │ │ ├── Client.sjava │ │ ├── Example.java │ │ ├── Server.sjava │ │ ├── Test.java │ │ └── TestImpl.java │ ├── simpledynamic │ │ ├── BuckPasserVectorOriginal.java │ │ ├── Client.java │ │ ├── Echo.java │ │ ├── EchoImpl.java │ │ ├── Framework.java │ │ ├── FrameworkClient.java │ │ ├── InterceptorTester.java │ │ ├── NewAcceptor.java │ │ ├── NewAcceptorClient.java │ │ └── SimpleDynamic.java │ ├── strm2 │ │ ├── Client.java │ │ ├── Server.java │ │ ├── Strm2Test.java │ │ ├── Testable.java │ │ ├── Tester.java │ │ ├── TesterImpl.java │ │ ├── Versions.java │ │ ├── class0 │ │ │ └── TestObject.java │ │ ├── class1 │ │ │ ├── TestObject.java │ │ │ └── TestObjectSuper.java │ │ ├── class2 │ │ │ ├── TestObject.java │ │ │ └── TestObjectSuper.java │ │ ├── class3 │ │ │ ├── TestObject.java │ │ │ └── TestObjectSuper.java │ │ ├── class4 │ │ │ ├── TestObject.java │ │ │ └── TestObjectSuper.java │ │ ├── class5 │ │ │ ├── TestObject.java │ │ │ └── TestObjectSuper.java │ │ ├── class6 │ │ │ ├── TestObject.java │ │ │ ├── TestObjectSuper.java │ │ │ ├── TestObjectSuperSub.java │ │ │ └── TestObjectSuperSuper.java │ │ └── class7 │ │ │ ├── TestObject.java │ │ │ ├── TestObjectSuper.java │ │ │ ├── TestObjectSuperSub.java │ │ │ └── TestObjectSuperSuper.java │ ├── stubserialization │ │ ├── Client.java │ │ ├── Constants.java │ │ ├── Echo.java │ │ ├── EchoServant.java │ │ ├── Hello.java │ │ ├── HelloServant.java │ │ ├── Server.java │ │ └── StubSerializationTest.java │ ├── tbbc │ │ └── Sample.java │ ├── testngrunner │ │ ├── Client.java │ │ ├── Second.java │ │ └── TestngRunnerTest.java │ ├── travelmuse │ │ ├── Client.java │ │ ├── TravelMuseTest.java │ │ └── mtm.bin │ └── util │ │ └── TransportManagerUtil.java │ ├── fake │ └── omega │ │ ├── Juliet.java │ │ ├── JulietHelper.java │ │ ├── Kilo.java │ │ └── KiloHelper.java │ ├── hopper │ ├── HopperTests.tdesc │ ├── h4486041 │ │ ├── Client.java │ │ ├── ORBInitErrorTest.java │ │ ├── ORBInitException.java │ │ └── TestORB.java │ ├── h4515953 │ │ ├── Processor.java │ │ ├── ProcessorImpl.java │ │ ├── RMICIDLEntityTest.java │ │ └── TestInterface.java │ ├── h4549085 │ │ ├── Client.java │ │ ├── LockedCodeSetTest.java │ │ ├── Server.java │ │ └── Tester.idl │ ├── h4620926 │ │ ├── Client.java │ │ ├── ConcurrentServantActivatorTest.java │ │ ├── Hello.idl │ │ └── Server.java │ ├── h4645953 │ │ ├── ValidateIdlModules.java │ │ └── service.idl │ ├── h4647746 │ │ ├── Client.java │ │ └── POAAppletTest.java │ ├── h4655388 │ │ ├── Client.java │ │ └── POAHierarchyTest.java │ ├── h4661596 │ │ └── WStringValueHelperTest.java │ └── h4670827 │ │ ├── Client.java │ │ ├── HelloImpl.java │ │ ├── INSServer.java │ │ ├── INSTest.java │ │ ├── TestConstants.java │ │ └── hello.idl │ ├── ibmspace │ ├── client │ │ ├── ActionSource.java │ │ ├── Arrow.java │ │ ├── BarControl.java │ │ ├── BarGroup.java │ │ ├── GalaxyView.java │ │ ├── GameSurrogate.java │ │ ├── GameUI.java │ │ ├── JourneyArrow.java │ │ ├── LabeledBarControl.java │ │ ├── PercentLayout.java │ │ ├── PieControl.java │ │ ├── PlanetStatsView.java │ │ ├── PlanetViewUI.java │ │ ├── ResourceLevelsPanel.java │ │ ├── ShipListPanel.java │ │ ├── SpaceFrame.java │ │ ├── TechLevelsPanel.java │ │ ├── TurnTaker.java │ │ ├── good.gif │ │ ├── logo.gif │ │ ├── selection.gif │ │ ├── ugly.gif │ │ └── unknown.gif │ ├── common │ │ ├── BudgetSummary.java │ │ ├── Fleet.java │ │ ├── GameProfile.java │ │ ├── GameView.java │ │ ├── ID.java │ │ ├── Identifiable.java │ │ ├── Journey.java │ │ ├── Planet.java │ │ ├── PlanetView.java │ │ ├── RemoteGameView.java │ │ ├── ShipDesign.java │ │ ├── SpaceConquest.java │ │ └── TechProfile.java │ ├── server │ │ ├── Battle.java │ │ ├── Budget.java │ │ ├── BudgetItem.java │ │ ├── FleetImpl.java │ │ ├── Galaxy.java │ │ ├── GalaxyProfile.java │ │ ├── Game.java │ │ ├── GameViewImpl.java │ │ ├── GameViewServer.java │ │ ├── Investment.java │ │ ├── JourneyImpl.java │ │ ├── Mining.java │ │ ├── PlanetImpl.java │ │ ├── PlanetNames.java │ │ ├── PlanetViewImpl.java │ │ ├── Player.java │ │ ├── Population.java │ │ ├── ResearchLab.java │ │ ├── Settlement.java │ │ ├── ShipSavings.java │ │ ├── SpaceConquestServer.java │ │ ├── Technology.java │ │ └── Terraforming.java │ └── spacetest │ │ └── SpaceTest.java │ ├── javax │ └── rmi │ │ ├── ClassLoadTest.java │ │ ├── Dog.java │ │ ├── DogImpl.java │ │ ├── DogServer.java │ │ ├── HashCode.java │ │ ├── HashCodeA.java │ │ ├── HashCodeAImpl.java │ │ ├── HashCodeImpl.java │ │ ├── PROHello.java │ │ ├── PROImpl.java │ │ ├── PROImpl2.java │ │ ├── PROTest.java │ │ ├── PortableREmoteOBject.java │ │ ├── RemoteDog.java │ │ ├── SInner.java │ │ ├── ServantInner.java │ │ ├── ServantOuter.java │ │ ├── fvd │ │ ├── Log.java │ │ ├── LogImpl.java │ │ ├── ParentClass.java │ │ ├── SecurityManager.java │ │ ├── Servant.java │ │ ├── ServantImpl.java │ │ ├── TheClient.java │ │ ├── TheServer.java │ │ └── TheTest.java │ │ └── test1 │ │ ├── ComboInterface.java │ │ ├── ComboInterfaceImpl.java │ │ ├── RemoteInterface1.java │ │ ├── RemoteInterface1Impl.java │ │ ├── RemoteInterface2.java │ │ ├── RemoteInterface2Impl.java │ │ ├── RemoteInterface3.java │ │ ├── RemoteInterface3Impl.java │ │ ├── SingleRemoteInterface.java │ │ ├── SingleRemoteInterfaceImpl.java │ │ ├── TheServer.java │ │ └── TheTest.java │ ├── mantis │ └── MantisTests.tdesc │ ├── naming │ ├── NamingTests.tdesc │ ├── cosnaming │ │ ├── Test.java │ │ └── naming_client.java │ ├── instest │ │ ├── Client.java │ │ ├── HelloImpl.java │ │ ├── INSServer.java │ │ ├── INSTest.java │ │ ├── TestConstants.java │ │ └── hello.idl │ ├── pcosnaming │ │ ├── PCOSNamingTest.java │ │ ├── hello.idl │ │ ├── helloClient.java │ │ └── helloServer.java │ └── rinameservice │ │ ├── NameServer.java │ │ ├── NameServiceClient.java │ │ ├── RINameServiceTest.java │ │ └── TestConstants.java │ ├── omega │ ├── A.java │ ├── AB.java │ ├── B.java │ ├── Bert.idlref │ ├── Bert.java │ ├── Bert__Fred.idlref │ ├── Climax.java │ ├── Constants.java │ ├── Dolphin.idlref │ ├── Dolphin.java │ ├── Dromedary.java │ ├── Foxtrot.java │ ├── FruitbatEx.idlref │ ├── FruitbatException.java │ ├── Golf.java │ ├── GolfOperations.java │ ├── Hotel.java │ ├── HotelHelper.java │ ├── India.java │ ├── MammalEx.idlref │ ├── MammalException.java │ ├── MammalOverload.idlref │ ├── MammalOverload.java │ ├── MammalOverloadEx.idlref │ ├── NCRemoteException.java │ ├── RedHerring.java │ ├── Thrower.idlref │ ├── Thrower.java │ ├── Wallaby.idlref │ └── Wallaby.java │ ├── performance │ ├── Tests.tdesc │ ├── simpleperf │ │ ├── SimplePerfTest.java │ │ ├── counterIF.java │ │ ├── counterImpl.java │ │ └── counterServer.java │ └── simpleperf2 │ │ ├── SimplePerfTest.java │ │ ├── counterClient.java │ │ ├── counterIF.java │ │ ├── counterImpl.java │ │ └── counterServer.java │ ├── pi │ ├── PITests.tdesc │ ├── assertions.html │ └── policyfactory │ │ ├── Client.java │ │ ├── PolicyFactoryHundred.java │ │ ├── PolicyFactoryTest.java │ │ ├── PolicyFactoryThousandPlus.java │ │ ├── PolicyHundred.java │ │ ├── PolicyTenThousand.java │ │ ├── PolicyThousand.java │ │ └── TestORBInitializer.java │ ├── rmic │ ├── IDLReferenceTest.classlist │ ├── StubReferenceTest.classlist │ ├── _BaseImpl_Tie.javaref │ ├── _Base_Stub.javaref │ ├── _DerivedImpl_Tie.javaref │ ├── _NoMethodsImpl_Tie.javaref │ ├── _NoMethods_Stub.javaref │ ├── _SimpleServant_Tie.javaref │ ├── _ThrowCORBAUserExServant_Tie.javaref │ └── _ThrowCORBAUserException_Stub.javaref │ ├── test.policy │ ├── test.policy.secure │ ├── test │ └── AllTests.tdesc │ ├── test12 │ ├── ARectangle.java │ ├── SerialPersistent.java │ └── SerializationTest.java │ ├── test_cases.txt │ ├── values1 │ └── javax │ │ └── rmi │ │ └── download │ │ └── values │ │ ├── ClassA.java │ │ ├── ClassB.java │ │ ├── ClassC.java │ │ ├── ClassE.java │ │ ├── ClientA.java │ │ ├── DownloadA.java │ │ ├── DownloadB.java │ │ ├── MissingContainer.java │ │ └── TheValueImpl.java │ └── values2 │ └── javax │ └── rmi │ └── download │ └── values │ ├── ClassA.java │ ├── ClassC.java │ ├── ClassD.java │ ├── ClassE.java │ ├── ClientA.java │ ├── MissingClass.java │ └── MissingContainer.java ├── tools ├── classcmp │ ├── ClassComparer.java │ ├── Makefile │ ├── tst1 │ │ └── TestClass.java │ └── tst2 │ │ └── TestClass.java ├── ior │ ├── CONV_FRAME.idl │ ├── CodeBaseHandler.java │ ├── DecodingException.java │ ├── EncapsHandler.java │ ├── IIOP.idl │ ├── IIOPProfileHandler.java │ ├── IOP.idl │ ├── IORDecoder.java │ ├── InitializationException.java │ ├── Makefile │ ├── README.txt │ ├── Rules.jmk │ ├── TagHelperHandler.java │ ├── TaggedMapFileReader.java │ ├── TextOutputHandler.java │ ├── Utility.java │ ├── tagcomps.txt │ └── tagprofs.txt └── pp │ └── msg_parser.txt └── www ├── TestCases.sxc ├── architecture.html ├── contents.html ├── corba-gf-tips.html ├── design ├── 6763340_diffs.txt ├── FOLB │ ├── AS9.0-RMI-IIOP-FOLB-FS.odt │ ├── AS9.0-RMI-IIOP-FOLB-FS.pdf │ ├── FODynamicCluster.pdf │ └── IIOPFOLBOnePager.html ├── GIOP_blunders.html ├── IIOPGroupAgent │ └── ORTExchangeAgent-2003 │ │ ├── IORProfiles.gif │ │ ├── IORProfiles.vthought │ │ ├── ORBD_EE_fsd.sxw │ │ ├── architecture.sxw │ │ ├── dataModel.gif │ │ ├── exampleEE.gif │ │ ├── exampleEE.vthought │ │ ├── exampleFirstInvokeRunning.gif │ │ ├── exampleFirstInvokeRunning.vthought │ │ ├── exampleRegister.gif │ │ ├── exampleRegister.vthought │ │ ├── exampleSecondInvokeRunning.gif │ │ ├── exampleSecondInvokeRunning.vthought │ │ ├── exampleThirdInvokeNotRunning.gif │ │ ├── exampleThirdInvokeNotRunning.vthought │ │ ├── objectModelExample.gif │ │ ├── objectModelExample.vthought │ │ ├── objectModelExample2.gif │ │ ├── orbd.zargo │ │ ├── stubFields.gif │ │ ├── stubFields.vthought │ │ ├── stubIORProfiles.gif │ │ ├── stubIORProfiles.vthought │ │ ├── stubInitial.gif │ │ ├── stubInitial.vthought │ │ ├── stubLocationForward.gif │ │ └── stubLocationForward.vthought ├── OutboundConnectionCacheImpl.png ├── SAF │ ├── SAF_class.mif │ ├── activation.idl │ ├── current.doc │ ├── extending.doc │ ├── imr.doc │ ├── init_order.txt │ ├── interceptor_usage.text │ ├── introduction.book │ ├── introduction.doc │ ├── introduction.pdf │ ├── introductionTOC.fm │ ├── old_activation_interaction.vthought │ ├── old_imr_class.vthought │ ├── portable.doc │ ├── server_activation.mif │ └── server_activation.vthought ├── ThreadPool.html ├── copyobject.htm ├── corba_testing_extensions.htm ├── dynamic_rmi_iiop.htm ├── dynamic_rmi_iiop_optimization.html ├── everett │ ├── casestudies │ │ └── giop1.txt │ └── serial_pres │ │ ├── pres1 │ │ ├── first0.jpg │ │ ├── first1.jpg │ │ ├── img0.html │ │ ├── img0.jpg │ │ ├── img1.html │ │ ├── img1.jpg │ │ ├── img2.html │ │ ├── img2.jpg │ │ ├── img3.html │ │ ├── img3.jpg │ │ ├── img4.html │ │ ├── img4.jpg │ │ ├── img5.html │ │ ├── img5.jpg │ │ ├── img6.html │ │ ├── img6.jpg │ │ ├── index.jpg │ │ ├── last0.jpg │ │ ├── last1.jpg │ │ ├── next0.jpg │ │ ├── next1.jpg │ │ ├── prev0.jpg │ │ ├── prev1.jpg │ │ ├── serial1pres.html │ │ ├── serial1pres.odp │ │ ├── serial1pres.sxi │ │ ├── text.jpg │ │ ├── text0.html │ │ ├── text1.html │ │ ├── text2.html │ │ ├── text3.html │ │ ├── text4.html │ │ ├── text5.html │ │ └── text6.html │ │ ├── pres2 │ │ ├── first0.jpg │ │ ├── first1.jpg │ │ ├── img0.html │ │ ├── img0.jpg │ │ ├── img1.html │ │ ├── img1.jpg │ │ ├── img10.html │ │ ├── img10.jpg │ │ ├── img11.html │ │ ├── img11.jpg │ │ ├── img12.html │ │ ├── img12.jpg │ │ ├── img13.html │ │ ├── img13.jpg │ │ ├── img14.html │ │ ├── img14.jpg │ │ ├── img15.html │ │ ├── img15.jpg │ │ ├── img2.html │ │ ├── img2.jpg │ │ ├── img3.html │ │ ├── img3.jpg │ │ ├── img4.html │ │ ├── img4.jpg │ │ ├── img5.html │ │ ├── img5.jpg │ │ ├── img6.html │ │ ├── img6.jpg │ │ ├── img7.html │ │ ├── img7.jpg │ │ ├── img8.html │ │ ├── img8.jpg │ │ ├── img9.html │ │ ├── img9.jpg │ │ ├── index.jpg │ │ ├── last0.jpg │ │ ├── last1.jpg │ │ ├── next0.jpg │ │ ├── next1.jpg │ │ ├── prev0.jpg │ │ ├── prev1.jpg │ │ ├── serial2pres.html │ │ ├── serial2pres.odp │ │ ├── serial2pres.sxi │ │ ├── text.jpg │ │ ├── text0.html │ │ ├── text1.html │ │ ├── text10.html │ │ ├── text11.html │ │ ├── text12.html │ │ ├── text13.html │ │ ├── text14.html │ │ ├── text15.html │ │ ├── text2.html │ │ ├── text3.html │ │ ├── text4.html │ │ ├── text5.html │ │ ├── text6.html │ │ ├── text7.html │ │ ├── text8.html │ │ └── text9.html │ │ ├── pres3 │ │ ├── first0.jpg │ │ ├── first1.jpg │ │ ├── img0.html │ │ ├── img0.jpg │ │ ├── img1.html │ │ ├── img1.jpg │ │ ├── img2.html │ │ ├── img2.jpg │ │ ├── img3.html │ │ ├── img3.jpg │ │ ├── img4.html │ │ ├── img4.jpg │ │ ├── index.jpg │ │ ├── last0.jpg │ │ ├── last1.jpg │ │ ├── next0.jpg │ │ ├── next1.jpg │ │ ├── prev0.jpg │ │ ├── prev1.jpg │ │ ├── serial3pres.html │ │ ├── serial3pres.odp │ │ ├── serial3pres.sxi │ │ ├── text.jpg │ │ ├── text0.html │ │ ├── text1.html │ │ ├── text2.html │ │ ├── text3.html │ │ └── text4.html │ │ ├── pres4 │ │ ├── first0.jpg │ │ ├── first1.jpg │ │ ├── img0.html │ │ ├── img0.jpg │ │ ├── img1.html │ │ ├── img1.jpg │ │ ├── img2.html │ │ ├── img2.jpg │ │ ├── img3.html │ │ ├── img3.jpg │ │ ├── img4.html │ │ ├── img4.jpg │ │ ├── img5.html │ │ ├── img5.jpg │ │ ├── img6.html │ │ ├── img6.jpg │ │ ├── img7.html │ │ ├── img7.jpg │ │ ├── img8.html │ │ ├── img8.jpg │ │ ├── img9.html │ │ ├── img9.jpg │ │ ├── index.jpg │ │ ├── last0.jpg │ │ ├── last1.jpg │ │ ├── next0.jpg │ │ ├── next1.jpg │ │ ├── prev0.jpg │ │ ├── prev1.jpg │ │ ├── serial4pres.html │ │ ├── serial4pres.odp │ │ ├── serial4pres.sxi │ │ ├── text.jpg │ │ ├── text0.html │ │ ├── text1.html │ │ ├── text2.html │ │ ├── text3.html │ │ ├── text4.html │ │ ├── text5.html │ │ ├── text6.html │ │ ├── text7.html │ │ ├── text8.html │ │ └── text9.html │ │ ├── pres5 │ │ ├── first0.jpg │ │ ├── first1.jpg │ │ ├── img0.html │ │ ├── img0.jpg │ │ ├── img1.html │ │ ├── img1.jpg │ │ ├── img10.html │ │ ├── img10.jpg │ │ ├── img11.html │ │ ├── img11.jpg │ │ ├── img12.html │ │ ├── img12.jpg │ │ ├── img13.html │ │ ├── img13.jpg │ │ ├── img14.html │ │ ├── img14.jpg │ │ ├── img15.html │ │ ├── img15.jpg │ │ ├── img16.html │ │ ├── img16.jpg │ │ ├── img17.html │ │ ├── img17.jpg │ │ ├── img18.html │ │ ├── img18.jpg │ │ ├── img19.html │ │ ├── img19.jpg │ │ ├── img2.html │ │ ├── img2.jpg │ │ ├── img20.html │ │ ├── img20.jpg │ │ ├── img21.html │ │ ├── img21.jpg │ │ ├── img22.html │ │ ├── img22.jpg │ │ ├── img3.html │ │ ├── img3.jpg │ │ ├── img4.html │ │ ├── img4.jpg │ │ ├── img5.html │ │ ├── img5.jpg │ │ ├── img6.html │ │ ├── img6.jpg │ │ ├── img7.html │ │ ├── img7.jpg │ │ ├── img8.html │ │ ├── img8.jpg │ │ ├── img9.html │ │ ├── img9.jpg │ │ ├── index.jpg │ │ ├── last0.jpg │ │ ├── last1.jpg │ │ ├── next0.jpg │ │ ├── next1.jpg │ │ ├── prev0.jpg │ │ ├── prev1.jpg │ │ ├── serial5pres.html │ │ ├── serial5pres.odp │ │ ├── serial5pres.sxi │ │ ├── text.jpg │ │ ├── text0.html │ │ ├── text1.html │ │ ├── text10.html │ │ ├── text11.html │ │ ├── text12.html │ │ ├── text13.html │ │ ├── text14.html │ │ ├── text15.html │ │ ├── text16.html │ │ ├── text17.html │ │ ├── text18.html │ │ ├── text19.html │ │ ├── text2.html │ │ ├── text20.html │ │ ├── text21.html │ │ ├── text22.html │ │ ├── text3.html │ │ ├── text4.html │ │ ├── text5.html │ │ ├── text6.html │ │ ├── text7.html │ │ ├── text8.html │ │ └── text9.html │ │ └── pres6 │ │ ├── first0.jpg │ │ ├── first1.jpg │ │ ├── img0.html │ │ ├── img0.jpg │ │ ├── img1.html │ │ ├── img1.jpg │ │ ├── img10.html │ │ ├── img10.jpg │ │ ├── img11.html │ │ ├── img11.jpg │ │ ├── img12.html │ │ ├── img12.jpg │ │ ├── img13.html │ │ ├── img13.jpg │ │ ├── img14.html │ │ ├── img14.jpg │ │ ├── img15.html │ │ ├── img15.jpg │ │ ├── img16.html │ │ ├── img16.jpg │ │ ├── img17.html │ │ ├── img17.jpg │ │ ├── img18.html │ │ ├── img18.jpg │ │ ├── img19.html │ │ ├── img19.jpg │ │ ├── img2.html │ │ ├── img2.jpg │ │ ├── img20.html │ │ ├── img20.jpg │ │ ├── img21.html │ │ ├── img21.jpg │ │ ├── img22.html │ │ ├── img22.jpg │ │ ├── img23.html │ │ ├── img23.jpg │ │ ├── img3.html │ │ ├── img3.jpg │ │ ├── img4.html │ │ ├── img4.jpg │ │ ├── img5.html │ │ ├── img5.jpg │ │ ├── img6.html │ │ ├── img6.jpg │ │ ├── img7.html │ │ ├── img7.jpg │ │ ├── img8.html │ │ ├── img8.jpg │ │ ├── img9.html │ │ ├── img9.jpg │ │ ├── index.jpg │ │ ├── last0.jpg │ │ ├── last1.jpg │ │ ├── next0.jpg │ │ ├── next1.jpg │ │ ├── prev0.jpg │ │ ├── prev1.jpg │ │ ├── serial6pres.html │ │ ├── serial6pres.odp │ │ ├── serial6pres.sxi │ │ ├── text.jpg │ │ ├── text0.html │ │ ├── text1.html │ │ ├── text10.html │ │ ├── text11.html │ │ ├── text12.html │ │ ├── text13.html │ │ ├── text14.html │ │ ├── text15.html │ │ ├── text16.html │ │ ├── text17.html │ │ ├── text18.html │ │ ├── text19.html │ │ ├── text2.html │ │ ├── text20.html │ │ ├── text21.html │ │ ├── text22.html │ │ ├── text23.html │ │ ├── text3.html │ │ ├── text4.html │ │ ├── text5.html │ │ ├── text6.html │ │ ├── text7.html │ │ ├── text8.html │ │ └── text9.html ├── general_exception.html ├── monitoring.html ├── orb_notes.html ├── orb_notes.pdf ├── orb_notes001.png ├── orb_notes002.png ├── orb_notes003.png ├── orb_notes004.png ├── orbdArchitecture.html ├── orbdArchitecture.sxw ├── orbdArchitecture_html_14a23ee7.gif ├── orbdArchitecture_html_1d6149dc.gif ├── orbdArchitecture_html_20a9079b.gif ├── orbdArchitecture_html_3330d434.gif ├── orbdArchitecture_html_3472b4d5.gif ├── orbdArchitecture_html_49d410e2.gif ├── orbdArchitecture_html_7394932c.gif ├── orbdArchitecture_html_77bcdcbf.gif ├── orbdArchitecture_html_m2abb7fe1.gif ├── orbdArchitecture_html_m3f9af29d.gif ├── orbdArchitecture_html_m431c1580.gif ├── orbdArchitecture_html_m6a2efbbb.gif ├── orbdArchitecture_html_m6f0b4e4.gif ├── orbdArchitecture_html_md67d953.gif ├── stubs.gif ├── testing_giop.html └── versioning.html ├── index.html ├── procedures.html └── schedule.html /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/Jenkinsfile -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/LICENSE.md -------------------------------------------------------------------------------- /NOTICE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/NOTICE.md -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/README -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/README.md -------------------------------------------------------------------------------- /csiv2-idl/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/csiv2-idl/pom.xml -------------------------------------------------------------------------------- /csiv2-idl/src/main/idl/CSI.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/csiv2-idl/src/main/idl/CSI.idl -------------------------------------------------------------------------------- /csiv2-idl/src/main/idl/CSIIOP.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/csiv2-idl/src/main/idl/CSIIOP.idl -------------------------------------------------------------------------------- /csiv2-idl/src/main/idl/GSSUP.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/csiv2-idl/src/main/idl/GSSUP.idl -------------------------------------------------------------------------------- /csiv2-idl/src/main/java/module-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/csiv2-idl/src/main/java/module-info.java -------------------------------------------------------------------------------- /exception-annotation-processor/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/exception-annotation-processor/pom.xml -------------------------------------------------------------------------------- /functional-tests/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/functional-tests/README -------------------------------------------------------------------------------- /functional-tests/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/functional-tests/pom.xml -------------------------------------------------------------------------------- /functional-tests/src/test/idl/adapteractivator.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/functional-tests/src/test/idl/adapteractivator.idl -------------------------------------------------------------------------------- /functional-tests/src/test/idl/codeset.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/functional-tests/src/test/idl/codeset.idl -------------------------------------------------------------------------------- /functional-tests/src/test/idl/corba/hcks/hcks.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/functional-tests/src/test/idl/corba/hcks/hcks.idl -------------------------------------------------------------------------------- /functional-tests/src/test/idl/fwddecl_legal.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/functional-tests/src/test/idl/fwddecl_legal.idl -------------------------------------------------------------------------------- /functional-tests/src/test/idl/iorinterceptor.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/functional-tests/src/test/idl/iorinterceptor.idl -------------------------------------------------------------------------------- /functional-tests/src/test/idl/iorintsockfact.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/functional-tests/src/test/idl/iorintsockfact.idl -------------------------------------------------------------------------------- /functional-tests/src/test/idl/legacy/hcks.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/functional-tests/src/test/idl/legacy/hcks.idl -------------------------------------------------------------------------------- /functional-tests/src/test/idl/legacy/islocal.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/functional-tests/src/test/idl/legacy/islocal.idl -------------------------------------------------------------------------------- /functional-tests/src/test/idl/legacy/oneway.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/functional-tests/src/test/idl/legacy/oneway.idl -------------------------------------------------------------------------------- /functional-tests/src/test/idl/legacy/orbinit.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/functional-tests/src/test/idl/legacy/orbinit.idl -------------------------------------------------------------------------------- /functional-tests/src/test/idl/multiorb_policy.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/functional-tests/src/test/idl/multiorb_policy.idl -------------------------------------------------------------------------------- /functional-tests/src/test/idl/poacallback1.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/functional-tests/src/test/idl/poacallback1.idl -------------------------------------------------------------------------------- /functional-tests/src/test/idl/poacallback2.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/functional-tests/src/test/idl/poacallback2.idl -------------------------------------------------------------------------------- /functional-tests/src/test/idl/poamanager.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/functional-tests/src/test/idl/poamanager.idl -------------------------------------------------------------------------------- /functional-tests/src/test/idl/poatest.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/functional-tests/src/test/idl/poatest.idl -------------------------------------------------------------------------------- /functional-tests/src/test/idl/purgecalls.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/functional-tests/src/test/idl/purgecalls.idl -------------------------------------------------------------------------------- /functional-tests/src/test/idl/serviceexample.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/functional-tests/src/test/idl/serviceexample.idl -------------------------------------------------------------------------------- /functional-tests/src/test/idl/systemexceptions.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/functional-tests/src/test/idl/systemexceptions.idl -------------------------------------------------------------------------------- /functional-tests/src/test/idl/unarrow.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/functional-tests/src/test/idl/unarrow.idl -------------------------------------------------------------------------------- /functional-tests/src/test/java/corba/Client.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/functional-tests/src/test/java/corba/Client.java -------------------------------------------------------------------------------- /functional-tests/src/test/java/corba/Server.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/functional-tests/src/test/java/corba/Server.java -------------------------------------------------------------------------------- /functional-tests/src/test/java/corba/hcks/C.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/functional-tests/src/test/java/corba/hcks/C.java -------------------------------------------------------------------------------- /functional-tests/src/test/java/corba/hcks/U.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/functional-tests/src/test/java/corba/hcks/U.java -------------------------------------------------------------------------------- /functional-tests/src/test/java/pi/ort/ORTTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/functional-tests/src/test/java/pi/ort/ORTTest.java -------------------------------------------------------------------------------- /functional-tests/src/test/java/pi/ort/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/functional-tests/src/test/java/pi/ort/Readme.txt -------------------------------------------------------------------------------- /functional-tests/src/test/java/pi/ort/Server.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/functional-tests/src/test/java/pi/ort/Server.java -------------------------------------------------------------------------------- /functional-tests/src/test/java/rmic/Base.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/functional-tests/src/test/java/rmic/Base.java -------------------------------------------------------------------------------- /functional-tests/src/test/java/rmic/BaseImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/functional-tests/src/test/java/rmic/BaseImpl.java -------------------------------------------------------------------------------- /functional-tests/src/test/java/rmic/Cat.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/functional-tests/src/test/java/rmic/Cat.java -------------------------------------------------------------------------------- /functional-tests/src/test/java/rmic/CharValue.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/functional-tests/src/test/java/rmic/CharValue.java -------------------------------------------------------------------------------- /functional-tests/src/test/java/rmic/Diamond.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/functional-tests/src/test/java/rmic/Diamond.java -------------------------------------------------------------------------------- /functional-tests/src/test/java/rmic/Hello.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/functional-tests/src/test/java/rmic/Hello.java -------------------------------------------------------------------------------- /functional-tests/src/test/java/rmic/HelloImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/functional-tests/src/test/java/rmic/HelloImpl.java -------------------------------------------------------------------------------- /functional-tests/src/test/java/rmic/HelloTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/functional-tests/src/test/java/rmic/HelloTest.java -------------------------------------------------------------------------------- /functional-tests/src/test/java/rmic/Hi.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/functional-tests/src/test/java/rmic/Hi.java -------------------------------------------------------------------------------- /functional-tests/src/test/java/rmic/HiServant.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/functional-tests/src/test/java/rmic/HiServant.java -------------------------------------------------------------------------------- /functional-tests/src/test/java/rmic/IDLTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/functional-tests/src/test/java/rmic/IDLTest.java -------------------------------------------------------------------------------- /functional-tests/src/test/java/rmic/InnerTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/functional-tests/src/test/java/rmic/InnerTest.java -------------------------------------------------------------------------------- /functional-tests/src/test/java/rmic/InvalidNC.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/functional-tests/src/test/java/rmic/InvalidNC.java -------------------------------------------------------------------------------- /functional-tests/src/test/java/rmic/Left.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/functional-tests/src/test/java/rmic/Left.java -------------------------------------------------------------------------------- /functional-tests/src/test/java/rmic/MapType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/functional-tests/src/test/java/rmic/MapType.java -------------------------------------------------------------------------------- /functional-tests/src/test/java/rmic/NoMethods.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/functional-tests/src/test/java/rmic/NoMethods.java -------------------------------------------------------------------------------- /functional-tests/src/test/java/rmic/ParseTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/functional-tests/src/test/java/rmic/ParseTest.java -------------------------------------------------------------------------------- /functional-tests/src/test/java/rmic/RMICTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/functional-tests/src/test/java/rmic/RMICTest.java -------------------------------------------------------------------------------- /functional-tests/src/test/java/rmic/Right.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/functional-tests/src/test/java/rmic/Right.java -------------------------------------------------------------------------------- /functional-tests/src/test/java/rmic/SRInner.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/functional-tests/src/test/java/rmic/SRInner.java -------------------------------------------------------------------------------- /functional-tests/src/test/java/rmic/Simple.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/functional-tests/src/test/java/rmic/Simple.java -------------------------------------------------------------------------------- /functional-tests/src/test/java/rmic/StubTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/functional-tests/src/test/java/rmic/StubTest.java -------------------------------------------------------------------------------- /functional-tests/src/test/java/rmic/TestEnv.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/functional-tests/src/test/java/rmic/TestEnv.java -------------------------------------------------------------------------------- /functional-tests/src/test/java/rmic/Typedef.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/functional-tests/src/test/java/rmic/Typedef.java -------------------------------------------------------------------------------- /functional-tests/src/test/java/rmic/UID.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/functional-tests/src/test/java/rmic/UID.java -------------------------------------------------------------------------------- /functional-tests/src/test/java/test/Alarm.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/functional-tests/src/test/java/test/Alarm.java -------------------------------------------------------------------------------- /functional-tests/src/test/java/test/Debug.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/functional-tests/src/test/java/test/Debug.java -------------------------------------------------------------------------------- /functional-tests/src/test/java/test/Hello.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/functional-tests/src/test/java/test/Hello.java -------------------------------------------------------------------------------- /functional-tests/src/test/java/test/Test.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/functional-tests/src/test/java/test/Test.java -------------------------------------------------------------------------------- /functional-tests/src/test/java/test/Util.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/functional-tests/src/test/java/test/Util.java -------------------------------------------------------------------------------- /functional-tests/src/test/java/test/WebServer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/functional-tests/src/test/java/test/WebServer.java -------------------------------------------------------------------------------- /idl/ir.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/idl/ir.idl -------------------------------------------------------------------------------- /idl/orb.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/idl/orb.idl -------------------------------------------------------------------------------- /idl/rt.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/idl/rt.idl -------------------------------------------------------------------------------- /idlj/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/idlj/README -------------------------------------------------------------------------------- /idlj/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/idlj/pom.xml -------------------------------------------------------------------------------- /idlj/src/main/java/module-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/idlj/src/main/java/module-info.java -------------------------------------------------------------------------------- /idlj/src/main/resources/includes/ir.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/idlj/src/main/resources/includes/ir.idl -------------------------------------------------------------------------------- /idlj/src/main/resources/includes/orb.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/idlj/src/main/resources/includes/orb.idl -------------------------------------------------------------------------------- /idlj/src/test/idl/CorbaServerTest.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/idlj/src/test/idl/CorbaServerTest.idl -------------------------------------------------------------------------------- /idlj/src/test/masters/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/idlj/src/test/masters/README -------------------------------------------------------------------------------- /iiop-folb-dev-test/OLD/createLog.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/iiop-folb-dev-test/OLD/createLog.1 -------------------------------------------------------------------------------- /iiop-folb-dev-test/OLD/createconfig.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/iiop-folb-dev-test/OLD/createconfig.sh -------------------------------------------------------------------------------- /iiop-folb-dev-test/OLD/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/iiop-folb-dev-test/OLD/setup.sh -------------------------------------------------------------------------------- /iiop-folb-dev-test/OLD/test-debug.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/iiop-folb-dev-test/OLD/test-debug.sh -------------------------------------------------------------------------------- /iiop-folb-dev-test/OLD/test-fo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/iiop-folb-dev-test/OLD/test-fo.sh -------------------------------------------------------------------------------- /iiop-folb-dev-test/OLD/test-lb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/iiop-folb-dev-test/OLD/test-lb.sh -------------------------------------------------------------------------------- /iiop-folb-dev-test/OLD/testsac.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/iiop-folb-dev-test/OLD/testsac.sh -------------------------------------------------------------------------------- /iiop-folb-dev-test/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/iiop-folb-dev-test/README -------------------------------------------------------------------------------- /iiop-folb-dev-test/README.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/iiop-folb-dev-test/README.html -------------------------------------------------------------------------------- /iiop-folb-dev-test/hudsonsetup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/iiop-folb-dev-test/hudsonsetup.sh -------------------------------------------------------------------------------- /iiop-folb-dev-test/logging.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/iiop-folb-dev-test/logging.properties -------------------------------------------------------------------------------- /iiop-folb-dev-test/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/iiop-folb-dev-test/pom.xml -------------------------------------------------------------------------------- /iiop-folb-dev-test/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/iiop-folb-dev-test/run.sh -------------------------------------------------------------------------------- /iiop-folb-dev-test/samplerun.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/iiop-folb-dev-test/samplerun.sh -------------------------------------------------------------------------------- /iiop-folb-dev-test/scripts/installgfejbsec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/iiop-folb-dev-test/scripts/installgfejbsec -------------------------------------------------------------------------------- /iiop-folb-dev-test/scripts/installgfnaming: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/iiop-folb-dev-test/scripts/installgfnaming -------------------------------------------------------------------------------- /iiop-folb-dev-test/scripts/installgforb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/iiop-folb-dev-test/scripts/installgforb -------------------------------------------------------------------------------- /iiop-folb-dev-test/scripts/installgfv3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/iiop-folb-dev-test/scripts/installgfv3 -------------------------------------------------------------------------------- /iiop-folb-dev-test/scripts/installorb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/iiop-folb-dev-test/scripts/installorb -------------------------------------------------------------------------------- /iiop-folb-dev-test/scripts/kill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/iiop-folb-dev-test/scripts/kill -------------------------------------------------------------------------------- /iiop-folb-dev-test/scripts/killgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/iiop-folb-dev-test/scripts/killgf -------------------------------------------------------------------------------- /iiop-folb-dev-test/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/iiop-folb-dev-test/setup.sh -------------------------------------------------------------------------------- /iiop-folb-dev-test/test/OrbFailOver/OrbFailOver-ejb/src/conf/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | 3 | -------------------------------------------------------------------------------- /iiop-folb-dev-test/test/OrbFailOver/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/iiop-folb-dev-test/test/OrbFailOver/build.xml -------------------------------------------------------------------------------- /iiop-folb-dev-test/test/OrbFailOver/src/conf/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | 3 | -------------------------------------------------------------------------------- /iiop-folb-dev-test/testcommands.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/iiop-folb-dev-test/testcommands.txt -------------------------------------------------------------------------------- /internal-api/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/internal-api/pom.xml -------------------------------------------------------------------------------- /internal-api/src/main/java/module-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/internal-api/src/main/java/module-info.java -------------------------------------------------------------------------------- /make/BundleNotes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/make/BundleNotes.txt -------------------------------------------------------------------------------- /make/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/make/build.properties -------------------------------------------------------------------------------- /make/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/make/build.xml -------------------------------------------------------------------------------- /make/copyright-information/copyright-exclude.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/make/copyright-information/copyright-exclude.txt -------------------------------------------------------------------------------- /make/copyright-information/copyright.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/make/copyright-information/copyright.txt -------------------------------------------------------------------------------- /make/findbugs-filter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/make/findbugs-filter.xml -------------------------------------------------------------------------------- /make/runtest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/make/runtest -------------------------------------------------------------------------------- /make/src-build-notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/make/src-build-notes.txt -------------------------------------------------------------------------------- /make/src-build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/make/src-build.xml -------------------------------------------------------------------------------- /omgapi/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/omgapi/pom.xml -------------------------------------------------------------------------------- /omgapi/src/main/idl-includes/corba.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/omgapi/src/main/idl-includes/corba.idl -------------------------------------------------------------------------------- /omgapi/src/main/idl-includes/manual-ir.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/omgapi/src/main/idl-includes/manual-ir.idl -------------------------------------------------------------------------------- /omgapi/src/main/idl-includes/orb.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/omgapi/src/main/idl-includes/orb.idl -------------------------------------------------------------------------------- /omgapi/src/main/idl/CORBAX.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/omgapi/src/main/idl/CORBAX.idl -------------------------------------------------------------------------------- /omgapi/src/main/idl/CosTSInteroperation.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/omgapi/src/main/idl/CosTSInteroperation.idl -------------------------------------------------------------------------------- /omgapi/src/main/idl/CosTransactions.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/omgapi/src/main/idl/CosTransactions.idl -------------------------------------------------------------------------------- /omgapi/src/main/idl/Dynamic.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/omgapi/src/main/idl/Dynamic.idl -------------------------------------------------------------------------------- /omgapi/src/main/idl/DynamicAny.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/omgapi/src/main/idl/DynamicAny.idl -------------------------------------------------------------------------------- /omgapi/src/main/idl/IOP.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/omgapi/src/main/idl/IOP.idl -------------------------------------------------------------------------------- /omgapi/src/main/idl/Interceptors.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/omgapi/src/main/idl/Interceptors.idl -------------------------------------------------------------------------------- /omgapi/src/main/idl/Messaging.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/omgapi/src/main/idl/Messaging.idl -------------------------------------------------------------------------------- /omgapi/src/main/idl/SendingContext.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/omgapi/src/main/idl/SendingContext.idl -------------------------------------------------------------------------------- /omgapi/src/main/idl/TimeBase.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/omgapi/src/main/idl/TimeBase.idl -------------------------------------------------------------------------------- /omgapi/src/main/idl/ir.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/omgapi/src/main/idl/ir.idl -------------------------------------------------------------------------------- /omgapi/src/main/idl/nameservice.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/omgapi/src/main/idl/nameservice.idl -------------------------------------------------------------------------------- /omgapi/src/main/idl/poa.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/omgapi/src/main/idl/poa.idl -------------------------------------------------------------------------------- /omgapi/src/main/java/javax/rmi/CORBA/EnumDesc.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/omgapi/src/main/java/javax/rmi/CORBA/EnumDesc.java -------------------------------------------------------------------------------- /omgapi/src/main/java/javax/rmi/CORBA/Stub.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/omgapi/src/main/java/javax/rmi/CORBA/Stub.java -------------------------------------------------------------------------------- /omgapi/src/main/java/javax/rmi/CORBA/Tie.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/omgapi/src/main/java/javax/rmi/CORBA/Tie.java -------------------------------------------------------------------------------- /omgapi/src/main/java/javax/rmi/CORBA/Util.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/omgapi/src/main/java/javax/rmi/CORBA/Util.java -------------------------------------------------------------------------------- /omgapi/src/main/java/javax/rmi/CORBA/package.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/omgapi/src/main/java/javax/rmi/CORBA/package.html -------------------------------------------------------------------------------- /omgapi/src/main/java/javax/rmi/package.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/omgapi/src/main/java/javax/rmi/package.html -------------------------------------------------------------------------------- /omgapi/src/main/java/module-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/omgapi/src/main/java/module-info.java -------------------------------------------------------------------------------- /omgapi/src/main/java/org/omg/CORBA/ARG_IN.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/omgapi/src/main/java/org/omg/CORBA/ARG_IN.java -------------------------------------------------------------------------------- /omgapi/src/main/java/org/omg/CORBA/ARG_INOUT.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/omgapi/src/main/java/org/omg/CORBA/ARG_INOUT.java -------------------------------------------------------------------------------- /omgapi/src/main/java/org/omg/CORBA/ARG_OUT.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/omgapi/src/main/java/org/omg/CORBA/ARG_OUT.java -------------------------------------------------------------------------------- /omgapi/src/main/java/org/omg/CORBA/Any.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/omgapi/src/main/java/org/omg/CORBA/Any.java -------------------------------------------------------------------------------- /omgapi/src/main/java/org/omg/CORBA/AnyHolder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/omgapi/src/main/java/org/omg/CORBA/AnyHolder.java -------------------------------------------------------------------------------- /omgapi/src/main/java/org/omg/CORBA/BAD_PARAM.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/omgapi/src/main/java/org/omg/CORBA/BAD_PARAM.java -------------------------------------------------------------------------------- /omgapi/src/main/java/org/omg/CORBA/BAD_POLICY.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/omgapi/src/main/java/org/omg/CORBA/BAD_POLICY.java -------------------------------------------------------------------------------- /omgapi/src/main/java/org/omg/CORBA/BAD_QOS.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/omgapi/src/main/java/org/omg/CORBA/BAD_QOS.java -------------------------------------------------------------------------------- /omgapi/src/main/java/org/omg/CORBA/Bounds.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/omgapi/src/main/java/org/omg/CORBA/Bounds.java -------------------------------------------------------------------------------- /omgapi/src/main/java/org/omg/CORBA/ByteHolder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/omgapi/src/main/java/org/omg/CORBA/ByteHolder.java -------------------------------------------------------------------------------- /omgapi/src/main/java/org/omg/CORBA/CharHolder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/omgapi/src/main/java/org/omg/CORBA/CharHolder.java -------------------------------------------------------------------------------- /omgapi/src/main/java/org/omg/CORBA/Context.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/omgapi/src/main/java/org/omg/CORBA/Context.java -------------------------------------------------------------------------------- /omgapi/src/main/java/org/omg/CORBA/Current.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/omgapi/src/main/java/org/omg/CORBA/Current.java -------------------------------------------------------------------------------- /omgapi/src/main/java/org/omg/CORBA/DynAny.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/omgapi/src/main/java/org/omg/CORBA/DynAny.java -------------------------------------------------------------------------------- /omgapi/src/main/java/org/omg/CORBA/DynArray.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/omgapi/src/main/java/org/omg/CORBA/DynArray.java -------------------------------------------------------------------------------- /omgapi/src/main/java/org/omg/CORBA/DynEnum.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/omgapi/src/main/java/org/omg/CORBA/DynEnum.java -------------------------------------------------------------------------------- /omgapi/src/main/java/org/omg/CORBA/DynFixed.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/omgapi/src/main/java/org/omg/CORBA/DynFixed.java -------------------------------------------------------------------------------- /omgapi/src/main/java/org/omg/CORBA/DynStruct.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/omgapi/src/main/java/org/omg/CORBA/DynStruct.java -------------------------------------------------------------------------------- /omgapi/src/main/java/org/omg/CORBA/DynUnion.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/omgapi/src/main/java/org/omg/CORBA/DynUnion.java -------------------------------------------------------------------------------- /omgapi/src/main/java/org/omg/CORBA/DynValue.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/omgapi/src/main/java/org/omg/CORBA/DynValue.java -------------------------------------------------------------------------------- /omgapi/src/main/java/org/omg/CORBA/FREE_MEM.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/omgapi/src/main/java/org/omg/CORBA/FREE_MEM.java -------------------------------------------------------------------------------- /omgapi/src/main/java/org/omg/CORBA/IDLType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/omgapi/src/main/java/org/omg/CORBA/IDLType.java -------------------------------------------------------------------------------- /omgapi/src/main/java/org/omg/CORBA/IMP_LIMIT.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/omgapi/src/main/java/org/omg/CORBA/IMP_LIMIT.java -------------------------------------------------------------------------------- /omgapi/src/main/java/org/omg/CORBA/INITIALIZE.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/omgapi/src/main/java/org/omg/CORBA/INITIALIZE.java -------------------------------------------------------------------------------- /omgapi/src/main/java/org/omg/CORBA/INTERNAL.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/omgapi/src/main/java/org/omg/CORBA/INTERNAL.java -------------------------------------------------------------------------------- /omgapi/src/main/java/org/omg/CORBA/INTF_REPOS.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/omgapi/src/main/java/org/omg/CORBA/INTF_REPOS.java -------------------------------------------------------------------------------- /omgapi/src/main/java/org/omg/CORBA/INV_FLAG.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/omgapi/src/main/java/org/omg/CORBA/INV_FLAG.java -------------------------------------------------------------------------------- /omgapi/src/main/java/org/omg/CORBA/INV_IDENT.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/omgapi/src/main/java/org/omg/CORBA/INV_IDENT.java -------------------------------------------------------------------------------- /omgapi/src/main/java/org/omg/CORBA/INV_OBJREF.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/omgapi/src/main/java/org/omg/CORBA/INV_OBJREF.java -------------------------------------------------------------------------------- /omgapi/src/main/java/org/omg/CORBA/INV_POLICY.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/omgapi/src/main/java/org/omg/CORBA/INV_POLICY.java -------------------------------------------------------------------------------- /omgapi/src/main/java/org/omg/CORBA/IRObject.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/omgapi/src/main/java/org/omg/CORBA/IRObject.java -------------------------------------------------------------------------------- /omgapi/src/main/java/org/omg/CORBA/IntHolder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/omgapi/src/main/java/org/omg/CORBA/IntHolder.java -------------------------------------------------------------------------------- /omgapi/src/main/java/org/omg/CORBA/LongHolder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/omgapi/src/main/java/org/omg/CORBA/LongHolder.java -------------------------------------------------------------------------------- /omgapi/src/main/java/org/omg/CORBA/MARSHAL.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/omgapi/src/main/java/org/omg/CORBA/MARSHAL.java -------------------------------------------------------------------------------- /omgapi/src/main/java/org/omg/CORBA/NO_MEMORY.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/omgapi/src/main/java/org/omg/CORBA/NO_MEMORY.java -------------------------------------------------------------------------------- /omgapi/src/main/java/org/omg/CORBA/NVList.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/omgapi/src/main/java/org/omg/CORBA/NVList.java -------------------------------------------------------------------------------- /omgapi/src/main/java/org/omg/CORBA/NamedValue.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/omgapi/src/main/java/org/omg/CORBA/NamedValue.java -------------------------------------------------------------------------------- /omgapi/src/main/java/org/omg/CORBA/OMGVMCID.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/omgapi/src/main/java/org/omg/CORBA/OMGVMCID.java -------------------------------------------------------------------------------- /omgapi/src/main/java/org/omg/CORBA/ORB.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/omgapi/src/main/java/org/omg/CORBA/ORB.java -------------------------------------------------------------------------------- /omgapi/src/main/java/org/omg/CORBA/Object.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/omgapi/src/main/java/org/omg/CORBA/Object.java -------------------------------------------------------------------------------- /omgapi/src/main/java/org/omg/CORBA/Policy.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/omgapi/src/main/java/org/omg/CORBA/Policy.java -------------------------------------------------------------------------------- /omgapi/src/main/java/org/omg/CORBA/Principal.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/omgapi/src/main/java/org/omg/CORBA/Principal.java -------------------------------------------------------------------------------- /omgapi/src/main/java/org/omg/CORBA/REBIND.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/omgapi/src/main/java/org/omg/CORBA/REBIND.java -------------------------------------------------------------------------------- /omgapi/src/main/java/org/omg/CORBA/Request.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/omgapi/src/main/java/org/omg/CORBA/Request.java -------------------------------------------------------------------------------- /omgapi/src/main/java/org/omg/CORBA/TCKind.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/omgapi/src/main/java/org/omg/CORBA/TCKind.java -------------------------------------------------------------------------------- /omgapi/src/main/java/org/omg/CORBA/TIMEOUT.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/omgapi/src/main/java/org/omg/CORBA/TIMEOUT.java -------------------------------------------------------------------------------- /omgapi/src/main/java/org/omg/CORBA/TRANSIENT.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/omgapi/src/main/java/org/omg/CORBA/TRANSIENT.java -------------------------------------------------------------------------------- /omgapi/src/main/java/org/omg/CORBA/TypeCode.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/omgapi/src/main/java/org/omg/CORBA/TypeCode.java -------------------------------------------------------------------------------- /omgapi/src/main/java/org/omg/CORBA/UNKNOWN.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/omgapi/src/main/java/org/omg/CORBA/UNKNOWN.java -------------------------------------------------------------------------------- /omgapi/src/main/java/org/omg/CORBA/VM_CUSTOM.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/omgapi/src/main/java/org/omg/CORBA/VM_CUSTOM.java -------------------------------------------------------------------------------- /omgapi/src/main/java/org/omg/CORBA/VM_NONE.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/omgapi/src/main/java/org/omg/CORBA/VM_NONE.java -------------------------------------------------------------------------------- /omgapi/src/main/java/org/omg/CORBA/package.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/omgapi/src/main/java/org/omg/CORBA/package.html -------------------------------------------------------------------------------- /omgapi/src/main/java/org/omg/CORBA_2_3/ORB.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/omgapi/src/main/java/org/omg/CORBA_2_3/ORB.java -------------------------------------------------------------------------------- /omgapi/src/test/java/org/omg/CORBA/ORBTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/omgapi/src/test/java/org/omg/CORBA/ORBTest.java -------------------------------------------------------------------------------- /orbmain/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/orbmain/pom.xml -------------------------------------------------------------------------------- /orbmain/src/main/java/module-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/orbmain/src/main/java/module-info.java -------------------------------------------------------------------------------- /orbmain/src/test/idl/codec.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/orbmain/src/test/idl/codec.idl -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/pom.xml -------------------------------------------------------------------------------- /rmic/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/rmic/README -------------------------------------------------------------------------------- /rmic/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/rmic/pom.xml -------------------------------------------------------------------------------- /rmic/src/main/java/module-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/rmic/src/main/java/module-info.java -------------------------------------------------------------------------------- /rmic/src/main/java/org/glassfish/rmic/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/rmic/src/main/java/org/glassfish/rmic/Main.java -------------------------------------------------------------------------------- /rmic/src/main/java/org/glassfish/rmic/Names.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/rmic/src/main/java/org/glassfish/rmic/Names.java -------------------------------------------------------------------------------- /rmic/src/main/java/org/glassfish/rmic/Util.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/rmic/src/main/java/org/glassfish/rmic/Util.java -------------------------------------------------------------------------------- /rmic/src/main/java/sun/rmi/rmic/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/rmic/src/main/java/sun/rmi/rmic/Main.java -------------------------------------------------------------------------------- /rmic/src/test/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/rmic/src/test/README -------------------------------------------------------------------------------- /rmic/src/test/java/TopLevelClass.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/rmic/src/test/java/TopLevelClass.java -------------------------------------------------------------------------------- /rmic/src/test/masters/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/rmic/src/test/masters/README -------------------------------------------------------------------------------- /src/share/classes/org/omg/CORBA/PolicyError.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/src/share/classes/org/omg/CORBA/PolicyError.java -------------------------------------------------------------------------------- /src/share/classes/org/omg/CosNaming/package.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/src/share/classes/org/omg/CosNaming/package.html -------------------------------------------------------------------------------- /src/share/classes/org/omg/DynamicAny/package.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/src/share/classes/org/omg/DynamicAny/package.html -------------------------------------------------------------------------------- /src/share/classes/sun/rmi/rmic/Constants.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/src/share/classes/sun/rmi/rmic/Constants.java -------------------------------------------------------------------------------- /src/share/classes/sun/rmi/rmic/Generator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/src/share/classes/sun/rmi/rmic/Generator.java -------------------------------------------------------------------------------- /src/share/classes/sun/rmi/rmic/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/src/share/classes/sun/rmi/rmic/Main.java -------------------------------------------------------------------------------- /src/share/classes/sun/rmi/rmic/Names.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/src/share/classes/sun/rmi/rmic/Names.java -------------------------------------------------------------------------------- /src/share/classes/sun/rmi/rmic/RMIConstants.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/src/share/classes/sun/rmi/rmic/RMIConstants.java -------------------------------------------------------------------------------- /src/share/classes/sun/rmi/rmic/RMIGenerator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/src/share/classes/sun/rmi/rmic/RMIGenerator.java -------------------------------------------------------------------------------- /src/share/classes/sun/rmi/rmic/RemoteClass.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/src/share/classes/sun/rmi/rmic/RemoteClass.java -------------------------------------------------------------------------------- /src/share/classes/sun/rmi/rmic/Util.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/src/share/classes/sun/rmi/rmic/Util.java -------------------------------------------------------------------------------- /src/share/classes/sun/rmi/rmic/iiop/ArrayType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/src/share/classes/sun/rmi/rmic/iiop/ArrayType.java -------------------------------------------------------------------------------- /src/share/classes/sun/rmi/rmic/iiop/ClassType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/src/share/classes/sun/rmi/rmic/iiop/ClassType.java -------------------------------------------------------------------------------- /src/share/classes/sun/rmi/rmic/iiop/Constants.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/src/share/classes/sun/rmi/rmic/iiop/Constants.java -------------------------------------------------------------------------------- /src/share/classes/sun/rmi/rmic/iiop/Generator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/src/share/classes/sun/rmi/rmic/iiop/Generator.java -------------------------------------------------------------------------------- /src/share/classes/sun/rmi/rmic/iiop/IDLNames.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/src/share/classes/sun/rmi/rmic/iiop/IDLNames.java -------------------------------------------------------------------------------- /src/share/classes/sun/rmi/rmic/iiop/Type.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/src/share/classes/sun/rmi/rmic/iiop/Type.java -------------------------------------------------------------------------------- /src/share/classes/sun/rmi/rmic/iiop/Util.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/src/share/classes/sun/rmi/rmic/iiop/Util.java -------------------------------------------------------------------------------- /src/share/classes/sun/rmi/rmic/iiop/ValueType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/src/share/classes/sun/rmi/rmic/iiop/ValueType.java -------------------------------------------------------------------------------- /src/site/apt/index.apt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/src/site/apt/index.apt -------------------------------------------------------------------------------- /test/.cvsignore: -------------------------------------------------------------------------------- 1 | build 2 | -------------------------------------------------------------------------------- /test/disabled/performance/eesample/SampleData.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/test/disabled/performance/eesample/SampleData.java -------------------------------------------------------------------------------- /test/disabled/performance/eesample/echoArray.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/test/disabled/performance/eesample/echoArray.xml -------------------------------------------------------------------------------- /test/disabled/performance/eesample/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/test/disabled/performance/eesample/test.xml -------------------------------------------------------------------------------- /test/disabled/performance/eesample/wspex/Item.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/test/disabled/performance/eesample/wspex/Item.java -------------------------------------------------------------------------------- /test/src/share/classes/alpha/bravo/A.idlref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/test/src/share/classes/alpha/bravo/A.idlref -------------------------------------------------------------------------------- /test/src/share/classes/alpha/bravo/A.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/test/src/share/classes/alpha/bravo/A.java -------------------------------------------------------------------------------- /test/src/share/classes/alpha/bravo/AB.idlref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/test/src/share/classes/alpha/bravo/AB.idlref -------------------------------------------------------------------------------- /test/src/share/classes/alpha/bravo/AB.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/test/src/share/classes/alpha/bravo/AB.java -------------------------------------------------------------------------------- /test/src/share/classes/alpha/bravo/B.idlref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/test/src/share/classes/alpha/bravo/B.idlref -------------------------------------------------------------------------------- /test/src/share/classes/alpha/bravo/B.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/test/src/share/classes/alpha/bravo/B.java -------------------------------------------------------------------------------- /test/src/share/classes/alpha/bravo/Bear.idlref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/test/src/share/classes/alpha/bravo/Bear.idlref -------------------------------------------------------------------------------- /test/src/share/classes/alpha/bravo/Bear.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/test/src/share/classes/alpha/bravo/Bear.java -------------------------------------------------------------------------------- /test/src/share/classes/alpha/bravo/Charlie.idlref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/test/src/share/classes/alpha/bravo/Charlie.idlref -------------------------------------------------------------------------------- /test/src/share/classes/alpha/bravo/Charlie.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/test/src/share/classes/alpha/bravo/Charlie.java -------------------------------------------------------------------------------- /test/src/share/classes/alpha/bravo/DuckBill.idlref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/test/src/share/classes/alpha/bravo/DuckBill.idlref -------------------------------------------------------------------------------- /test/src/share/classes/alpha/bravo/DuckBill.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/test/src/share/classes/alpha/bravo/DuckBill.java -------------------------------------------------------------------------------- /test/src/share/classes/alpha/bravo/Hedgehog.idlref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/test/src/share/classes/alpha/bravo/Hedgehog.idlref -------------------------------------------------------------------------------- /test/src/share/classes/alpha/bravo/Hedgehog.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/test/src/share/classes/alpha/bravo/Hedgehog.java -------------------------------------------------------------------------------- /test/src/share/classes/alpha/bravo/Kangaroo.idlref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/test/src/share/classes/alpha/bravo/Kangaroo.idlref -------------------------------------------------------------------------------- /test/src/share/classes/alpha/bravo/Kangaroo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/test/src/share/classes/alpha/bravo/Kangaroo.java -------------------------------------------------------------------------------- /test/src/share/classes/alpha/bravo/Mammal.idlref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/test/src/share/classes/alpha/bravo/Mammal.idlref -------------------------------------------------------------------------------- /test/src/share/classes/alpha/bravo/Mammal.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/test/src/share/classes/alpha/bravo/Mammal.java -------------------------------------------------------------------------------- /test/src/share/classes/alpha/bravo/Multi.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/test/src/share/classes/alpha/bravo/Multi.java -------------------------------------------------------------------------------- /test/src/share/classes/alpha/bravo/Platypus.idlref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/test/src/share/classes/alpha/bravo/Platypus.idlref -------------------------------------------------------------------------------- /test/src/share/classes/alpha/bravo/Platypus.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/test/src/share/classes/alpha/bravo/Platypus.java -------------------------------------------------------------------------------- /test/src/share/classes/alpha/bravo/PolarBear.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/test/src/share/classes/alpha/bravo/PolarBear.java -------------------------------------------------------------------------------- /test/src/share/classes/alpha/bravo/Porcupine.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/test/src/share/classes/alpha/bravo/Porcupine.java -------------------------------------------------------------------------------- /test/src/share/classes/alpha/bravo/Wallaby.idlref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/test/src/share/classes/alpha/bravo/Wallaby.idlref -------------------------------------------------------------------------------- /test/src/share/classes/alpha/bravo/Wallaby.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/test/src/share/classes/alpha/bravo/Wallaby.java -------------------------------------------------------------------------------- /test/src/share/classes/alpha/bravo/Warthog.idlref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/test/src/share/classes/alpha/bravo/Warthog.idlref -------------------------------------------------------------------------------- /test/src/share/classes/alpha/bravo/Warthog.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/test/src/share/classes/alpha/bravo/Warthog.java -------------------------------------------------------------------------------- /test/src/share/classes/alpha/bravo/Wombat.idlref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/test/src/share/classes/alpha/bravo/Wombat.idlref -------------------------------------------------------------------------------- /test/src/share/classes/alpha/bravo/Wombat.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/test/src/share/classes/alpha/bravo/Wombat.java -------------------------------------------------------------------------------- /test/src/share/classes/corba/CORBATests.tdesc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/test/src/share/classes/corba/CORBATests.tdesc -------------------------------------------------------------------------------- /test/src/share/classes/corba/CopyObjectTests.tdesc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/test/src/share/classes/corba/CopyObjectTests.tdesc -------------------------------------------------------------------------------- /test/src/share/classes/corba/cdrext/AbsTester.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/test/src/share/classes/corba/cdrext/AbsTester.java -------------------------------------------------------------------------------- /test/src/share/classes/corba/cdrext/Client.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/test/src/share/classes/corba/cdrext/Client.java -------------------------------------------------------------------------------- /test/src/share/classes/corba/cdrext/Server.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/test/src/share/classes/corba/cdrext/Server.java -------------------------------------------------------------------------------- /test/src/share/classes/corba/cdrext/Status.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/test/src/share/classes/corba/cdrext/Status.java -------------------------------------------------------------------------------- /test/src/share/classes/corba/cdrext/SubClass.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/test/src/share/classes/corba/cdrext/SubClass.java -------------------------------------------------------------------------------- /test/src/share/classes/corba/cdrext/TestClass.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/test/src/share/classes/corba/cdrext/TestClass.java -------------------------------------------------------------------------------- /test/src/share/classes/corba/cdrext/Tester.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/test/src/share/classes/corba/cdrext/Tester.java -------------------------------------------------------------------------------- /test/src/share/classes/corba/cdrstreams/Node.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/test/src/share/classes/corba/cdrstreams/Node.java -------------------------------------------------------------------------------- /test/src/share/classes/corba/cmvt/CMVTTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/test/src/share/classes/corba/cmvt/CMVTTest.java -------------------------------------------------------------------------------- /test/src/share/classes/corba/cmvt/Client.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/test/src/share/classes/corba/cmvt/Client.java -------------------------------------------------------------------------------- /test/src/share/classes/corba/cmvt/GIOPCombo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/test/src/share/classes/corba/cmvt/GIOPCombo.java -------------------------------------------------------------------------------- /test/src/share/classes/corba/cmvt/Server.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/test/src/share/classes/corba/cmvt/Server.java -------------------------------------------------------------------------------- /test/src/share/classes/corba/codebase/Client.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/test/src/share/classes/corba/codebase/Client.java -------------------------------------------------------------------------------- /test/src/share/classes/corba/codebase/Server.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/test/src/share/classes/corba/codebase/Server.java -------------------------------------------------------------------------------- /test/src/share/classes/corba/codebase/Tester.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/test/src/share/classes/corba/codebase/Tester.java -------------------------------------------------------------------------------- /test/src/share/classes/corba/custom/Client.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/test/src/share/classes/corba/custom/Client.java -------------------------------------------------------------------------------- /test/src/share/classes/corba/custom/Node.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/test/src/share/classes/corba/custom/Node.java -------------------------------------------------------------------------------- /test/src/share/classes/corba/custom/Server.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/test/src/share/classes/corba/custom/Server.java -------------------------------------------------------------------------------- /test/src/share/classes/corba/custom/Verifier.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/test/src/share/classes/corba/custom/Verifier.java -------------------------------------------------------------------------------- /test/src/share/classes/corba/enuminterop/Echo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/test/src/share/classes/corba/enuminterop/Echo.java -------------------------------------------------------------------------------- /test/src/share/classes/corba/example/Client.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/test/src/share/classes/corba/example/Client.java -------------------------------------------------------------------------------- /test/src/share/classes/corba/example/Server.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/test/src/share/classes/corba/example/Server.java -------------------------------------------------------------------------------- /test/src/share/classes/corba/example/hello.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/test/src/share/classes/corba/example/hello.idl -------------------------------------------------------------------------------- /test/src/share/classes/corba/folb/Client.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/test/src/share/classes/corba/folb/Client.java -------------------------------------------------------------------------------- /test/src/share/classes/corba/folb/Common.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/test/src/share/classes/corba/folb/Common.java -------------------------------------------------------------------------------- /test/src/share/classes/corba/folb/EchoTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/test/src/share/classes/corba/folb/EchoTest.java -------------------------------------------------------------------------------- /test/src/share/classes/corba/folb/FolbTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/test/src/share/classes/corba/folb/FolbTest.java -------------------------------------------------------------------------------- /test/src/share/classes/corba/folb/README-AS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/test/src/share/classes/corba/folb/README-AS.txt -------------------------------------------------------------------------------- /test/src/share/classes/corba/folb/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/test/src/share/classes/corba/folb/README.txt -------------------------------------------------------------------------------- /test/src/share/classes/corba/folb/Server.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/test/src/share/classes/corba/folb/Server.java -------------------------------------------------------------------------------- /test/src/share/classes/corba/folb/TODO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/test/src/share/classes/corba/folb/TODO.txt -------------------------------------------------------------------------------- /test/src/share/classes/corba/fsm/Client.sjava: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/test/src/share/classes/corba/fsm/Client.sjava -------------------------------------------------------------------------------- /test/src/share/classes/corba/fsm/FSMTest.sjava: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/test/src/share/classes/corba/fsm/FSMTest.sjava -------------------------------------------------------------------------------- /test/src/share/classes/corba/giopgen/Client.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/test/src/share/classes/corba/giopgen/Client.java -------------------------------------------------------------------------------- /test/src/share/classes/corba/giopgen/Common.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/test/src/share/classes/corba/giopgen/Common.java -------------------------------------------------------------------------------- /test/src/share/classes/corba/giopgen/Server.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/test/src/share/classes/corba/giopgen/Server.java -------------------------------------------------------------------------------- /test/src/share/classes/corba/giopgen/Test.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/test/src/share/classes/corba/giopgen/Test.java -------------------------------------------------------------------------------- /test/src/share/classes/corba/ior/Client.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/test/src/share/classes/corba/ior/Client.java -------------------------------------------------------------------------------- /test/src/share/classes/corba/ior/IORTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/test/src/share/classes/corba/ior/IORTests.java -------------------------------------------------------------------------------- /test/src/share/classes/corba/lb/Client.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/test/src/share/classes/corba/lb/Client.java -------------------------------------------------------------------------------- /test/src/share/classes/corba/lb/Common.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/test/src/share/classes/corba/lb/Common.java -------------------------------------------------------------------------------- /test/src/share/classes/corba/lb/LB.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/test/src/share/classes/corba/lb/LB.java -------------------------------------------------------------------------------- /test/src/share/classes/corba/lb/LBTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/test/src/share/classes/corba/lb/LBTest.java -------------------------------------------------------------------------------- /test/src/share/classes/corba/lb/Server.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/test/src/share/classes/corba/lb/Server.java -------------------------------------------------------------------------------- /test/src/share/classes/corba/lb/Test.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/test/src/share/classes/corba/lb/Test.java -------------------------------------------------------------------------------- /test/src/share/classes/corba/lb/TestServant.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/test/src/share/classes/corba/lb/TestServant.java -------------------------------------------------------------------------------- /test/src/share/classes/corba/lbq/Common.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/test/src/share/classes/corba/lbq/Common.java -------------------------------------------------------------------------------- /test/src/share/classes/corba/lbq/LBControl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/test/src/share/classes/corba/lbq/LBControl.java -------------------------------------------------------------------------------- /test/src/share/classes/corba/lbq/Server.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/test/src/share/classes/corba/lbq/Server.java -------------------------------------------------------------------------------- /test/src/share/classes/corba/lbq/Test.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/test/src/share/classes/corba/lbq/Test.java -------------------------------------------------------------------------------- /test/src/share/classes/corba/lbq/notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/test/src/share/classes/corba/lbq/notes.txt -------------------------------------------------------------------------------- /test/src/share/classes/corba/misc/Buck.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/test/src/share/classes/corba/misc/Buck.java -------------------------------------------------------------------------------- /test/src/share/classes/corba/misc/Client.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/test/src/share/classes/corba/misc/Client.java -------------------------------------------------------------------------------- /test/src/share/classes/corba/misc/MiscTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/test/src/share/classes/corba/misc/MiscTest.java -------------------------------------------------------------------------------- /test/src/share/classes/corba/mixedorb/Echo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/test/src/share/classes/corba/mixedorb/Echo.java -------------------------------------------------------------------------------- /test/src/share/classes/corba/mixedorb/Notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/test/src/share/classes/corba/mixedorb/Notes.txt -------------------------------------------------------------------------------- /test/src/share/classes/corba/nortel/Client.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/test/src/share/classes/corba/nortel/Client.java -------------------------------------------------------------------------------- /test/src/share/classes/corba/nortel/Echo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/test/src/share/classes/corba/nortel/Echo.java -------------------------------------------------------------------------------- /test/src/share/classes/corba/nortel/Test.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/test/src/share/classes/corba/nortel/Test.java -------------------------------------------------------------------------------- /test/src/share/classes/corba/ortremote/Test.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/test/src/share/classes/corba/ortremote/Test.java -------------------------------------------------------------------------------- /test/src/share/classes/corba/prlb/Notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/test/src/share/classes/corba/prlb/Notes.txt -------------------------------------------------------------------------------- /test/src/share/classes/corba/rfm/TestClient.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/test/src/share/classes/corba/rfm/TestClient.java -------------------------------------------------------------------------------- /test/src/share/classes/corba/rfm/TestRFM.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/test/src/share/classes/corba/rfm/TestRFM.java -------------------------------------------------------------------------------- /test/src/share/classes/corba/rmic/A.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/test/src/share/classes/corba/rmic/A.java -------------------------------------------------------------------------------- /test/src/share/classes/corba/rmic/B.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/test/src/share/classes/corba/rmic/B.java -------------------------------------------------------------------------------- /test/src/share/classes/corba/rmic/C.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/test/src/share/classes/corba/rmic/C.java -------------------------------------------------------------------------------- /test/src/share/classes/corba/rmic/CImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/test/src/share/classes/corba/rmic/CImpl.java -------------------------------------------------------------------------------- /test/src/share/classes/corba/rmic/RmicTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/test/src/share/classes/corba/rmic/RmicTest.java -------------------------------------------------------------------------------- /test/src/share/classes/corba/shutdown/Test.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/test/src/share/classes/corba/shutdown/Test.java -------------------------------------------------------------------------------- /test/src/share/classes/corba/strm2/Client.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/test/src/share/classes/corba/strm2/Client.java -------------------------------------------------------------------------------- /test/src/share/classes/corba/strm2/Server.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/test/src/share/classes/corba/strm2/Server.java -------------------------------------------------------------------------------- /test/src/share/classes/corba/strm2/Testable.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/test/src/share/classes/corba/strm2/Testable.java -------------------------------------------------------------------------------- /test/src/share/classes/corba/strm2/Tester.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/test/src/share/classes/corba/strm2/Tester.java -------------------------------------------------------------------------------- /test/src/share/classes/corba/strm2/Versions.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/test/src/share/classes/corba/strm2/Versions.java -------------------------------------------------------------------------------- /test/src/share/classes/corba/tbbc/Sample.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/test/src/share/classes/corba/tbbc/Sample.java -------------------------------------------------------------------------------- /test/src/share/classes/corba/travelmuse/mtm.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/test/src/share/classes/corba/travelmuse/mtm.bin -------------------------------------------------------------------------------- /test/src/share/classes/fake/omega/Juliet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/test/src/share/classes/fake/omega/Juliet.java -------------------------------------------------------------------------------- /test/src/share/classes/fake/omega/Kilo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/test/src/share/classes/fake/omega/Kilo.java -------------------------------------------------------------------------------- /test/src/share/classes/hopper/HopperTests.tdesc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/test/src/share/classes/hopper/HopperTests.tdesc -------------------------------------------------------------------------------- /test/src/share/classes/hopper/h4620926/Hello.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/test/src/share/classes/hopper/h4620926/Hello.idl -------------------------------------------------------------------------------- /test/src/share/classes/hopper/h4670827/hello.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/test/src/share/classes/hopper/h4670827/hello.idl -------------------------------------------------------------------------------- /test/src/share/classes/ibmspace/client/good.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/test/src/share/classes/ibmspace/client/good.gif -------------------------------------------------------------------------------- /test/src/share/classes/ibmspace/client/logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/test/src/share/classes/ibmspace/client/logo.gif -------------------------------------------------------------------------------- /test/src/share/classes/ibmspace/client/ugly.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/test/src/share/classes/ibmspace/client/ugly.gif -------------------------------------------------------------------------------- /test/src/share/classes/ibmspace/common/ID.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/test/src/share/classes/ibmspace/common/ID.java -------------------------------------------------------------------------------- /test/src/share/classes/ibmspace/server/Game.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/test/src/share/classes/ibmspace/server/Game.java -------------------------------------------------------------------------------- /test/src/share/classes/javax/rmi/Dog.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/test/src/share/classes/javax/rmi/Dog.java -------------------------------------------------------------------------------- /test/src/share/classes/javax/rmi/DogImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/test/src/share/classes/javax/rmi/DogImpl.java -------------------------------------------------------------------------------- /test/src/share/classes/javax/rmi/DogServer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/test/src/share/classes/javax/rmi/DogServer.java -------------------------------------------------------------------------------- /test/src/share/classes/javax/rmi/HashCode.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/test/src/share/classes/javax/rmi/HashCode.java -------------------------------------------------------------------------------- /test/src/share/classes/javax/rmi/HashCodeA.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/test/src/share/classes/javax/rmi/HashCodeA.java -------------------------------------------------------------------------------- /test/src/share/classes/javax/rmi/PROHello.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/test/src/share/classes/javax/rmi/PROHello.java -------------------------------------------------------------------------------- /test/src/share/classes/javax/rmi/PROImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/test/src/share/classes/javax/rmi/PROImpl.java -------------------------------------------------------------------------------- /test/src/share/classes/javax/rmi/PROImpl2.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/test/src/share/classes/javax/rmi/PROImpl2.java -------------------------------------------------------------------------------- /test/src/share/classes/javax/rmi/PROTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/test/src/share/classes/javax/rmi/PROTest.java -------------------------------------------------------------------------------- /test/src/share/classes/javax/rmi/RemoteDog.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/test/src/share/classes/javax/rmi/RemoteDog.java -------------------------------------------------------------------------------- /test/src/share/classes/javax/rmi/SInner.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/test/src/share/classes/javax/rmi/SInner.java -------------------------------------------------------------------------------- /test/src/share/classes/javax/rmi/fvd/Log.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/test/src/share/classes/javax/rmi/fvd/Log.java -------------------------------------------------------------------------------- /test/src/share/classes/mantis/MantisTests.tdesc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/test/src/share/classes/mantis/MantisTests.tdesc -------------------------------------------------------------------------------- /test/src/share/classes/naming/NamingTests.tdesc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/test/src/share/classes/naming/NamingTests.tdesc -------------------------------------------------------------------------------- /test/src/share/classes/naming/instest/hello.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/test/src/share/classes/naming/instest/hello.idl -------------------------------------------------------------------------------- /test/src/share/classes/omega/A.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/test/src/share/classes/omega/A.java -------------------------------------------------------------------------------- /test/src/share/classes/omega/AB.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/test/src/share/classes/omega/AB.java -------------------------------------------------------------------------------- /test/src/share/classes/omega/B.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/test/src/share/classes/omega/B.java -------------------------------------------------------------------------------- /test/src/share/classes/omega/Bert.idlref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/test/src/share/classes/omega/Bert.idlref -------------------------------------------------------------------------------- /test/src/share/classes/omega/Bert.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/test/src/share/classes/omega/Bert.java -------------------------------------------------------------------------------- /test/src/share/classes/omega/Bert__Fred.idlref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/test/src/share/classes/omega/Bert__Fred.idlref -------------------------------------------------------------------------------- /test/src/share/classes/omega/Climax.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/test/src/share/classes/omega/Climax.java -------------------------------------------------------------------------------- /test/src/share/classes/omega/Constants.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/test/src/share/classes/omega/Constants.java -------------------------------------------------------------------------------- /test/src/share/classes/omega/Dolphin.idlref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/test/src/share/classes/omega/Dolphin.idlref -------------------------------------------------------------------------------- /test/src/share/classes/omega/Dolphin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/test/src/share/classes/omega/Dolphin.java -------------------------------------------------------------------------------- /test/src/share/classes/omega/Dromedary.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/test/src/share/classes/omega/Dromedary.java -------------------------------------------------------------------------------- /test/src/share/classes/omega/Foxtrot.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/test/src/share/classes/omega/Foxtrot.java -------------------------------------------------------------------------------- /test/src/share/classes/omega/FruitbatEx.idlref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/test/src/share/classes/omega/FruitbatEx.idlref -------------------------------------------------------------------------------- /test/src/share/classes/omega/Golf.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/test/src/share/classes/omega/Golf.java -------------------------------------------------------------------------------- /test/src/share/classes/omega/GolfOperations.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/test/src/share/classes/omega/GolfOperations.java -------------------------------------------------------------------------------- /test/src/share/classes/omega/Hotel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/test/src/share/classes/omega/Hotel.java -------------------------------------------------------------------------------- /test/src/share/classes/omega/HotelHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/test/src/share/classes/omega/HotelHelper.java -------------------------------------------------------------------------------- /test/src/share/classes/omega/India.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/test/src/share/classes/omega/India.java -------------------------------------------------------------------------------- /test/src/share/classes/omega/MammalEx.idlref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/test/src/share/classes/omega/MammalEx.idlref -------------------------------------------------------------------------------- /test/src/share/classes/omega/MammalOverload.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/test/src/share/classes/omega/MammalOverload.java -------------------------------------------------------------------------------- /test/src/share/classes/omega/RedHerring.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/test/src/share/classes/omega/RedHerring.java -------------------------------------------------------------------------------- /test/src/share/classes/omega/Thrower.idlref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/test/src/share/classes/omega/Thrower.idlref -------------------------------------------------------------------------------- /test/src/share/classes/omega/Thrower.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/test/src/share/classes/omega/Thrower.java -------------------------------------------------------------------------------- /test/src/share/classes/omega/Wallaby.idlref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/test/src/share/classes/omega/Wallaby.idlref -------------------------------------------------------------------------------- /test/src/share/classes/omega/Wallaby.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/test/src/share/classes/omega/Wallaby.java -------------------------------------------------------------------------------- /test/src/share/classes/performance/Tests.tdesc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/test/src/share/classes/performance/Tests.tdesc -------------------------------------------------------------------------------- /test/src/share/classes/pi/PITests.tdesc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/test/src/share/classes/pi/PITests.tdesc -------------------------------------------------------------------------------- /test/src/share/classes/pi/assertions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/test/src/share/classes/pi/assertions.html -------------------------------------------------------------------------------- /test/src/share/classes/rmic/_Base_Stub.javaref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/test/src/share/classes/rmic/_Base_Stub.javaref -------------------------------------------------------------------------------- /test/src/share/classes/test.policy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/test/src/share/classes/test.policy -------------------------------------------------------------------------------- /test/src/share/classes/test.policy.secure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/test/src/share/classes/test.policy.secure -------------------------------------------------------------------------------- /test/src/share/classes/test/AllTests.tdesc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/test/src/share/classes/test/AllTests.tdesc -------------------------------------------------------------------------------- /test/src/share/classes/test12/ARectangle.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/test/src/share/classes/test12/ARectangle.java -------------------------------------------------------------------------------- /test/src/share/classes/test_cases.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/test/src/share/classes/test_cases.txt -------------------------------------------------------------------------------- /tools/classcmp/ClassComparer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/tools/classcmp/ClassComparer.java -------------------------------------------------------------------------------- /tools/classcmp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/tools/classcmp/Makefile -------------------------------------------------------------------------------- /tools/classcmp/tst1/TestClass.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/tools/classcmp/tst1/TestClass.java -------------------------------------------------------------------------------- /tools/classcmp/tst2/TestClass.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/tools/classcmp/tst2/TestClass.java -------------------------------------------------------------------------------- /tools/ior/CONV_FRAME.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/tools/ior/CONV_FRAME.idl -------------------------------------------------------------------------------- /tools/ior/CodeBaseHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/tools/ior/CodeBaseHandler.java -------------------------------------------------------------------------------- /tools/ior/DecodingException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/tools/ior/DecodingException.java -------------------------------------------------------------------------------- /tools/ior/EncapsHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/tools/ior/EncapsHandler.java -------------------------------------------------------------------------------- /tools/ior/IIOP.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/tools/ior/IIOP.idl -------------------------------------------------------------------------------- /tools/ior/IIOPProfileHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/tools/ior/IIOPProfileHandler.java -------------------------------------------------------------------------------- /tools/ior/IOP.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/tools/ior/IOP.idl -------------------------------------------------------------------------------- /tools/ior/IORDecoder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/tools/ior/IORDecoder.java -------------------------------------------------------------------------------- /tools/ior/InitializationException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/tools/ior/InitializationException.java -------------------------------------------------------------------------------- /tools/ior/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/tools/ior/Makefile -------------------------------------------------------------------------------- /tools/ior/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/tools/ior/README.txt -------------------------------------------------------------------------------- /tools/ior/Rules.jmk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/tools/ior/Rules.jmk -------------------------------------------------------------------------------- /tools/ior/TagHelperHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/tools/ior/TagHelperHandler.java -------------------------------------------------------------------------------- /tools/ior/TaggedMapFileReader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/tools/ior/TaggedMapFileReader.java -------------------------------------------------------------------------------- /tools/ior/TextOutputHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/tools/ior/TextOutputHandler.java -------------------------------------------------------------------------------- /tools/ior/Utility.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/tools/ior/Utility.java -------------------------------------------------------------------------------- /tools/ior/tagcomps.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/tools/ior/tagcomps.txt -------------------------------------------------------------------------------- /tools/ior/tagprofs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/tools/ior/tagprofs.txt -------------------------------------------------------------------------------- /tools/pp/msg_parser.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/tools/pp/msg_parser.txt -------------------------------------------------------------------------------- /www/TestCases.sxc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/TestCases.sxc -------------------------------------------------------------------------------- /www/architecture.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/architecture.html -------------------------------------------------------------------------------- /www/contents.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/contents.html -------------------------------------------------------------------------------- /www/corba-gf-tips.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/corba-gf-tips.html -------------------------------------------------------------------------------- /www/design/6763340_diffs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/6763340_diffs.txt -------------------------------------------------------------------------------- /www/design/FOLB/AS9.0-RMI-IIOP-FOLB-FS.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/FOLB/AS9.0-RMI-IIOP-FOLB-FS.odt -------------------------------------------------------------------------------- /www/design/FOLB/AS9.0-RMI-IIOP-FOLB-FS.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/FOLB/AS9.0-RMI-IIOP-FOLB-FS.pdf -------------------------------------------------------------------------------- /www/design/FOLB/FODynamicCluster.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/FOLB/FODynamicCluster.pdf -------------------------------------------------------------------------------- /www/design/FOLB/IIOPFOLBOnePager.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/FOLB/IIOPFOLBOnePager.html -------------------------------------------------------------------------------- /www/design/GIOP_blunders.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/GIOP_blunders.html -------------------------------------------------------------------------------- /www/design/OutboundConnectionCacheImpl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/OutboundConnectionCacheImpl.png -------------------------------------------------------------------------------- /www/design/SAF/SAF_class.mif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/SAF/SAF_class.mif -------------------------------------------------------------------------------- /www/design/SAF/activation.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/SAF/activation.idl -------------------------------------------------------------------------------- /www/design/SAF/current.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/SAF/current.doc -------------------------------------------------------------------------------- /www/design/SAF/extending.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/SAF/extending.doc -------------------------------------------------------------------------------- /www/design/SAF/imr.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/SAF/imr.doc -------------------------------------------------------------------------------- /www/design/SAF/init_order.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/SAF/init_order.txt -------------------------------------------------------------------------------- /www/design/SAF/interceptor_usage.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/SAF/interceptor_usage.text -------------------------------------------------------------------------------- /www/design/SAF/introduction.book: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/SAF/introduction.book -------------------------------------------------------------------------------- /www/design/SAF/introduction.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/SAF/introduction.doc -------------------------------------------------------------------------------- /www/design/SAF/introduction.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/SAF/introduction.pdf -------------------------------------------------------------------------------- /www/design/SAF/introductionTOC.fm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/SAF/introductionTOC.fm -------------------------------------------------------------------------------- /www/design/SAF/old_imr_class.vthought: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/SAF/old_imr_class.vthought -------------------------------------------------------------------------------- /www/design/SAF/portable.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/SAF/portable.doc -------------------------------------------------------------------------------- /www/design/SAF/server_activation.mif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/SAF/server_activation.mif -------------------------------------------------------------------------------- /www/design/SAF/server_activation.vthought: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/SAF/server_activation.vthought -------------------------------------------------------------------------------- /www/design/ThreadPool.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/ThreadPool.html -------------------------------------------------------------------------------- /www/design/copyobject.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/copyobject.htm -------------------------------------------------------------------------------- /www/design/corba_testing_extensions.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/corba_testing_extensions.htm -------------------------------------------------------------------------------- /www/design/dynamic_rmi_iiop.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/dynamic_rmi_iiop.htm -------------------------------------------------------------------------------- /www/design/dynamic_rmi_iiop_optimization.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/dynamic_rmi_iiop_optimization.html -------------------------------------------------------------------------------- /www/design/everett/casestudies/giop1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/casestudies/giop1.txt -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres1/first0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres1/first0.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres1/first1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres1/first1.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres1/img0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres1/img0.html -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres1/img0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres1/img0.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres1/img1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres1/img1.html -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres1/img1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres1/img1.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres1/img2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres1/img2.html -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres1/img2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres1/img2.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres1/img3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres1/img3.html -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres1/img3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres1/img3.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres1/img4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres1/img4.html -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres1/img4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres1/img4.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres1/img5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres1/img5.html -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres1/img5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres1/img5.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres1/img6.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres1/img6.html -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres1/img6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres1/img6.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres1/index.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres1/index.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres1/last0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres1/last0.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres1/last1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres1/last1.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres1/next0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres1/next0.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres1/next1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres1/next1.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres1/prev0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres1/prev0.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres1/prev1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres1/prev1.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres1/text.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres1/text.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres1/text0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres1/text0.html -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres1/text1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres1/text1.html -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres1/text2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres1/text2.html -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres1/text3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres1/text3.html -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres1/text4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres1/text4.html -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres1/text5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres1/text5.html -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres1/text6.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres1/text6.html -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres2/first0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres2/first0.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres2/first1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres2/first1.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres2/img0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres2/img0.html -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres2/img0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres2/img0.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres2/img1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres2/img1.html -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres2/img1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres2/img1.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres2/img10.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres2/img10.html -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres2/img10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres2/img10.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres2/img11.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres2/img11.html -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres2/img11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres2/img11.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres2/img12.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres2/img12.html -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres2/img12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres2/img12.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres2/img13.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres2/img13.html -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres2/img13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres2/img13.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres2/img14.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres2/img14.html -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres2/img14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres2/img14.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres2/img15.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres2/img15.html -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres2/img15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres2/img15.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres2/img2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres2/img2.html -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres2/img2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres2/img2.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres2/img3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres2/img3.html -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres2/img3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres2/img3.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres2/img4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres2/img4.html -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres2/img4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres2/img4.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres2/img5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres2/img5.html -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres2/img5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres2/img5.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres2/img6.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres2/img6.html -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres2/img6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres2/img6.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres2/img7.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres2/img7.html -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres2/img7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres2/img7.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres2/img8.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres2/img8.html -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres2/img8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres2/img8.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres2/img9.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres2/img9.html -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres2/img9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres2/img9.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres2/index.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres2/index.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres2/last0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres2/last0.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres2/last1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres2/last1.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres2/next0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres2/next0.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres2/next1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres2/next1.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres2/prev0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres2/prev0.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres2/prev1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres2/prev1.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres2/text.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres2/text.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres2/text0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres2/text0.html -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres2/text1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres2/text1.html -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres2/text10.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres2/text10.html -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres2/text11.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres2/text11.html -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres2/text12.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres2/text12.html -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres2/text13.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres2/text13.html -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres2/text14.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres2/text14.html -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres2/text15.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres2/text15.html -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres2/text2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres2/text2.html -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres2/text3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres2/text3.html -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres2/text4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres2/text4.html -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres2/text5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres2/text5.html -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres2/text6.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres2/text6.html -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres2/text7.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres2/text7.html -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres2/text8.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres2/text8.html -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres2/text9.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres2/text9.html -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres3/first0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres3/first0.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres3/first1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres3/first1.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres3/img0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres3/img0.html -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres3/img0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres3/img0.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres3/img1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres3/img1.html -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres3/img1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres3/img1.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres3/img2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres3/img2.html -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres3/img2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres3/img2.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres3/img3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres3/img3.html -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres3/img3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres3/img3.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres3/img4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres3/img4.html -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres3/img4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres3/img4.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres3/index.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres3/index.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres3/last0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres3/last0.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres3/last1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres3/last1.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres3/next0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres3/next0.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres3/next1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres3/next1.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres3/prev0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres3/prev0.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres3/prev1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres3/prev1.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres3/text.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres3/text.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres3/text0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres3/text0.html -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres3/text1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres3/text1.html -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres3/text2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres3/text2.html -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres3/text3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres3/text3.html -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres3/text4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres3/text4.html -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres4/first0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres4/first0.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres4/first1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres4/first1.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres4/img0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres4/img0.html -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres4/img0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres4/img0.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres4/img1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres4/img1.html -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres4/img1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres4/img1.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres4/img2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres4/img2.html -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres4/img2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres4/img2.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres4/img3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres4/img3.html -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres4/img3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres4/img3.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres4/img4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres4/img4.html -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres4/img4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres4/img4.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres4/img5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres4/img5.html -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres4/img5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres4/img5.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres4/img6.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres4/img6.html -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres4/img6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres4/img6.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres4/img7.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres4/img7.html -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres4/img7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres4/img7.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres4/img8.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres4/img8.html -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres4/img8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres4/img8.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres4/img9.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres4/img9.html -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres4/img9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres4/img9.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres4/index.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres4/index.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres4/last0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres4/last0.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres4/last1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres4/last1.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres4/next0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres4/next0.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres4/next1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres4/next1.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres4/prev0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres4/prev0.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres4/prev1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres4/prev1.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres4/text.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres4/text.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres4/text0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres4/text0.html -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres4/text1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres4/text1.html -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres4/text2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres4/text2.html -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres4/text3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres4/text3.html -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres4/text4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres4/text4.html -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres4/text5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres4/text5.html -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres4/text6.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres4/text6.html -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres4/text7.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres4/text7.html -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres4/text8.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres4/text8.html -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres4/text9.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres4/text9.html -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres5/first0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres5/first0.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres5/first1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres5/first1.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres5/img0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres5/img0.html -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres5/img0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres5/img0.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres5/img1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres5/img1.html -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres5/img1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres5/img1.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres5/img10.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres5/img10.html -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres5/img10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres5/img10.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres5/img11.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres5/img11.html -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres5/img11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres5/img11.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres5/img12.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres5/img12.html -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres5/img12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres5/img12.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres5/img13.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres5/img13.html -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres5/img13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres5/img13.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres5/img14.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres5/img14.html -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres5/img14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres5/img14.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres5/img15.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres5/img15.html -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres5/img15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres5/img15.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres5/img16.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres5/img16.html -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres5/img16.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres5/img16.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres5/img17.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres5/img17.html -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres5/img17.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres5/img17.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres5/img18.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres5/img18.html -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres5/img18.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres5/img18.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres5/img19.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres5/img19.html -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres5/img19.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres5/img19.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres5/img2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres5/img2.html -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres5/img2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres5/img2.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres5/img20.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres5/img20.html -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres5/img20.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres5/img20.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres5/img21.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres5/img21.html -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres5/img21.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres5/img21.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres5/img22.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres5/img22.html -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres5/img22.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres5/img22.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres5/img3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres5/img3.html -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres5/img3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres5/img3.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres5/img4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres5/img4.html -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres5/img4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres5/img4.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres5/img5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres5/img5.html -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres5/img5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres5/img5.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres5/img6.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres5/img6.html -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres5/img6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres5/img6.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres5/img7.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres5/img7.html -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres5/img7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres5/img7.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres5/img8.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres5/img8.html -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres5/img8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres5/img8.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres5/img9.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres5/img9.html -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres5/img9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres5/img9.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres5/index.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres5/index.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres5/last0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres5/last0.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres5/last1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres5/last1.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres5/next0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres5/next0.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres5/next1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres5/next1.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres5/prev0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres5/prev0.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres5/prev1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres5/prev1.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres5/text.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres5/text.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres5/text0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres5/text0.html -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres5/text1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres5/text1.html -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres5/text10.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres5/text10.html -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres5/text11.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres5/text11.html -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres5/text12.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres5/text12.html -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres5/text13.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres5/text13.html -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres5/text14.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres5/text14.html -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres5/text15.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres5/text15.html -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres5/text16.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres5/text16.html -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres5/text17.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres5/text17.html -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres5/text18.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres5/text18.html -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres5/text19.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres5/text19.html -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres5/text2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres5/text2.html -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres5/text20.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres5/text20.html -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres5/text21.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres5/text21.html -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres5/text22.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres5/text22.html -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres5/text3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres5/text3.html -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres5/text4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres5/text4.html -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres5/text5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres5/text5.html -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres5/text6.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres5/text6.html -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres5/text7.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres5/text7.html -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres5/text8.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres5/text8.html -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres5/text9.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres5/text9.html -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres6/first0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres6/first0.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres6/first1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres6/first1.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres6/img0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres6/img0.html -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres6/img0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres6/img0.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres6/img1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres6/img1.html -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres6/img1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres6/img1.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres6/img10.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres6/img10.html -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres6/img10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres6/img10.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres6/img11.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres6/img11.html -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres6/img11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres6/img11.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres6/img12.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres6/img12.html -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres6/img12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres6/img12.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres6/img13.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres6/img13.html -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres6/img13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres6/img13.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres6/img14.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres6/img14.html -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres6/img14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres6/img14.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres6/img15.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres6/img15.html -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres6/img15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres6/img15.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres6/img16.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres6/img16.html -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres6/img16.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres6/img16.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres6/img17.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres6/img17.html -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres6/img17.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres6/img17.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres6/img18.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres6/img18.html -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres6/img18.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres6/img18.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres6/img19.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres6/img19.html -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres6/img19.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres6/img19.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres6/img2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres6/img2.html -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres6/img2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres6/img2.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres6/img20.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres6/img20.html -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres6/img20.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres6/img20.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres6/img21.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres6/img21.html -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres6/img21.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres6/img21.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres6/img22.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres6/img22.html -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres6/img22.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres6/img22.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres6/img23.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres6/img23.html -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres6/img23.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres6/img23.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres6/img3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres6/img3.html -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres6/img3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres6/img3.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres6/img4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres6/img4.html -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres6/img4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres6/img4.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres6/img5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres6/img5.html -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres6/img5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres6/img5.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres6/img6.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres6/img6.html -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres6/img6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres6/img6.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres6/img7.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres6/img7.html -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres6/img7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres6/img7.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres6/img8.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres6/img8.html -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres6/img8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres6/img8.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres6/img9.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres6/img9.html -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres6/img9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres6/img9.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres6/index.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres6/index.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres6/last0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres6/last0.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres6/last1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres6/last1.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres6/next0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres6/next0.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres6/next1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres6/next1.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres6/prev0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres6/prev0.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres6/prev1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres6/prev1.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres6/text.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres6/text.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres6/text0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres6/text0.html -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres6/text1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres6/text1.html -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres6/text10.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres6/text10.html -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres6/text11.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres6/text11.html -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres6/text12.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres6/text12.html -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres6/text13.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres6/text13.html -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres6/text14.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres6/text14.html -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres6/text15.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres6/text15.html -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres6/text16.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres6/text16.html -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres6/text17.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres6/text17.html -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres6/text18.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres6/text18.html -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres6/text19.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres6/text19.html -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres6/text2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres6/text2.html -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres6/text20.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres6/text20.html -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres6/text21.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres6/text21.html -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres6/text22.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres6/text22.html -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres6/text23.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres6/text23.html -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres6/text3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres6/text3.html -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres6/text4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres6/text4.html -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres6/text5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres6/text5.html -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres6/text6.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres6/text6.html -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres6/text7.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres6/text7.html -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres6/text8.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres6/text8.html -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres6/text9.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/everett/serial_pres/pres6/text9.html -------------------------------------------------------------------------------- /www/design/general_exception.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/general_exception.html -------------------------------------------------------------------------------- /www/design/monitoring.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/monitoring.html -------------------------------------------------------------------------------- /www/design/orb_notes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/orb_notes.html -------------------------------------------------------------------------------- /www/design/orb_notes.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/orb_notes.pdf -------------------------------------------------------------------------------- /www/design/orb_notes001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/orb_notes001.png -------------------------------------------------------------------------------- /www/design/orb_notes002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/orb_notes002.png -------------------------------------------------------------------------------- /www/design/orb_notes003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/orb_notes003.png -------------------------------------------------------------------------------- /www/design/orb_notes004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/orb_notes004.png -------------------------------------------------------------------------------- /www/design/orbdArchitecture.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/orbdArchitecture.html -------------------------------------------------------------------------------- /www/design/orbdArchitecture.sxw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/orbdArchitecture.sxw -------------------------------------------------------------------------------- /www/design/orbdArchitecture_html_14a23ee7.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/orbdArchitecture_html_14a23ee7.gif -------------------------------------------------------------------------------- /www/design/orbdArchitecture_html_1d6149dc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/orbdArchitecture_html_1d6149dc.gif -------------------------------------------------------------------------------- /www/design/orbdArchitecture_html_20a9079b.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/orbdArchitecture_html_20a9079b.gif -------------------------------------------------------------------------------- /www/design/orbdArchitecture_html_3330d434.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/orbdArchitecture_html_3330d434.gif -------------------------------------------------------------------------------- /www/design/orbdArchitecture_html_3472b4d5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/orbdArchitecture_html_3472b4d5.gif -------------------------------------------------------------------------------- /www/design/orbdArchitecture_html_49d410e2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/orbdArchitecture_html_49d410e2.gif -------------------------------------------------------------------------------- /www/design/orbdArchitecture_html_7394932c.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/orbdArchitecture_html_7394932c.gif -------------------------------------------------------------------------------- /www/design/orbdArchitecture_html_77bcdcbf.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/orbdArchitecture_html_77bcdcbf.gif -------------------------------------------------------------------------------- /www/design/orbdArchitecture_html_m2abb7fe1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/orbdArchitecture_html_m2abb7fe1.gif -------------------------------------------------------------------------------- /www/design/orbdArchitecture_html_m3f9af29d.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/orbdArchitecture_html_m3f9af29d.gif -------------------------------------------------------------------------------- /www/design/orbdArchitecture_html_m431c1580.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/orbdArchitecture_html_m431c1580.gif -------------------------------------------------------------------------------- /www/design/orbdArchitecture_html_m6a2efbbb.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/orbdArchitecture_html_m6a2efbbb.gif -------------------------------------------------------------------------------- /www/design/orbdArchitecture_html_m6f0b4e4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/orbdArchitecture_html_m6f0b4e4.gif -------------------------------------------------------------------------------- /www/design/orbdArchitecture_html_md67d953.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/orbdArchitecture_html_md67d953.gif -------------------------------------------------------------------------------- /www/design/stubs.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/stubs.gif -------------------------------------------------------------------------------- /www/design/testing_giop.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/testing_giop.html -------------------------------------------------------------------------------- /www/design/versioning.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/design/versioning.html -------------------------------------------------------------------------------- /www/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/index.html -------------------------------------------------------------------------------- /www/procedures.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/procedures.html -------------------------------------------------------------------------------- /www/schedule.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/HEAD/www/schedule.html --------------------------------------------------------------------------------