Categories:
Audio (13)
Biotech (29)
Bytecode (36)
Database (77)
Framework (7)
Game (7)
General (507)
Graphics (53)
I/O (35)
IDE (2)
JAR Tools (101)
JavaBeans (21)
JDBC (121)
JDK (426)
JSP (20)
Logging (108)
Mail (58)
Messaging (8)
Network (84)
PDF (97)
Report (7)
Scripting (84)
Security (32)
Server (121)
Servlet (26)
SOAP (24)
Testing (54)
Web (15)
XML (309)
Collections:
Other Resources:
JRE 8 rt.jar - com.* Package Source Code
JRE 8 rt.jar is the JAR file for JRE 8 RT (Runtime) libraries.
JRE (Java Runtime) 8 is the runtime environment included in JDK 8.
JRE 8 rt.jar libraries are divided into 6 packages:
com.* - Internal Oracle and Sun Microsystems libraries java.* - Standard Java API libraries. javax.* - Extended Java API libraries. jdk.* - JDK supporting libraries. org.* - Third party libraries. sun.* - Old libraries developed by Sun Microsystems.
JAR File Information:
Directory of C:\fyicenter\jdk-1.8.0_191\jre\lib 63,596,151 rt.jar
Here is the list of Java classes of the com.* package in JRE 1.8.0_191 rt.jar. Java source codes are also provided.
✍: FYIcenter
⏎ com/sun/corba/se/impl/interceptors/ORBInitInfoImpl.java
/* * Copyright (c) 2000, 2003, Oracle and/or its affiliates. All rights reserved. * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. * * * * * * * * * * * * * * * * * * * * */ package com.sun.corba.se.impl.interceptors; import org.omg.CORBA.BAD_PARAM; import org.omg.CORBA.BAD_INV_ORDER; import org.omg.CORBA.CompletionStatus; import org.omg.CORBA.NO_IMPLEMENT; import org.omg.CORBA.OBJECT_NOT_EXIST; import org.omg.CORBA.LocalObject; import org.omg.CORBA.Policy; import org.omg.CORBA.PolicyError; import org.omg.IOP.CodecFactory; import org.omg.PortableInterceptor.ORBInitInfo; import org.omg.PortableInterceptor.ClientRequestInterceptor; import org.omg.PortableInterceptor.IORInterceptor; import org.omg.PortableInterceptor.PolicyFactory; import org.omg.PortableInterceptor.ServerRequestInterceptor; import org.omg.PortableInterceptor.ORBInitInfoPackage.DuplicateName; import org.omg.PortableInterceptor.ORBInitInfoPackage.InvalidName; import com.sun.corba.se.spi.orb.ORB; import com.sun.corba.se.spi.legacy.interceptor.ORBInitInfoExt ; import com.sun.corba.se.spi.logging.CORBALogDomains; import com.sun.corba.se.impl.orbutil.ORBUtility; import com.sun.corba.se.impl.logging.InterceptorsSystemException; import com.sun.corba.se.impl.logging.ORBUtilSystemException; import com.sun.corba.se.impl.logging.OMGSystemException; /** * ORBInitInfoImpl is the implementation of the ORBInitInfo class to be * passed to ORBInitializers, as described in orbos/99-12-02. */ public final class ORBInitInfoImpl extends org.omg.CORBA.LocalObject implements ORBInitInfo, ORBInitInfoExt { // The ORB we are initializing private ORB orb; private InterceptorsSystemException wrapper ; private ORBUtilSystemException orbutilWrapper ; private OMGSystemException omgWrapper ; // The arguments passed to ORB_init private String[] args; // The ID of the ORB being initialized private String orbId; // The CodecFactory private CodecFactory codecFactory; // The current stage of initialization private int stage = STAGE_PRE_INIT; // The pre-initialization stage (pre_init() being called) public static final int STAGE_PRE_INIT = 0; // The post-initialization stage (post_init() being called) public static final int STAGE_POST_INIT = 1; // Reject all calls - this object should no longer be around. public static final int STAGE_CLOSED = 2; // The description for the OBJECT_NOT_EXIST exception in STAGE_CLOSED private static final String MESSAGE_ORBINITINFO_INVALID = "ORBInitInfo object is only valid during ORB_init"; /** * Creates a new ORBInitInfoImpl object (scoped to package) * * @param args The arguments passed to ORB_init. */ ORBInitInfoImpl( ORB orb, String[] args, String orbId, CodecFactory codecFactory ) { this.orb = orb; wrapper = InterceptorsSystemException.get( orb, CORBALogDomains.RPC_PROTOCOL ) ; orbutilWrapper = ORBUtilSystemException.get( orb, CORBALogDomains.RPC_PROTOCOL ) ; omgWrapper = OMGSystemException.get( orb, CORBALogDomains.RPC_PROTOCOL ) ; this.args = args; this.orbId = orbId; this.codecFactory = codecFactory; } /** Return the ORB behind this ORBInitInfo. This is defined in the * ORBInitInfoExt interface. */ public ORB getORB() { return orb ; } /** * Sets the current stage we are in. This limits access to certain * functionality. */ void setStage( int stage ) { this.stage = stage; } /** * Throws an exception if the current stage is STAGE_CLOSED. * This is called before any method is invoked to ensure that * no method invocations are attempted after all calls to post_init() * are completed. */ private void checkStage() { if( stage == STAGE_CLOSED ) { throw wrapper.orbinitinfoInvalid() ; } } /* ******************************************************************* * The following are implementations of the ORBInitInfo operations. *******************************************************************/ /** * This attribute contains the arguments passed to ORB_init. They may * or may not contain the ORB's arguments */ public String[] arguments () { checkStage(); return args; } /** * This attribute is the ID of the ORB being initialized */ public String orb_id () { checkStage(); return orbId; } /** * This attribute is the IOP::CodecFactory. The CodecFactory is normally * obtained via a call to ORB::resolve_initial_references( "CodecFactory" ) * but since the ORB is not yet available and Interceptors, particularly * when processing service contexts, will require a Codec, a means of * obtaining a Codec is necessary during ORB intialization. */ public CodecFactory codec_factory () { checkStage(); return codecFactory; } /** * See orbos/99-12-02, Chapter 11, Dynamic Initial References on page * 11-81. This operation is identical to ORB::register_initial_reference * described there. This same functionality exists here because the ORB, * not yet fully initialized, is not yet available but initial references * may need to be registered as part of Interceptor registration. * <p> * This method may not be called during post_init. */ public void register_initial_reference( String id, org.omg.CORBA.Object obj ) throws InvalidName { checkStage(); if( id == null ) nullParam(); // As per CORBA 3.0 section 21.8.1, // if null is passed as the obj parameter, // throw BAD_PARAM with minor code OMGSystemException.RIR_WITH_NULL_OBJECT. // Though the spec is talking about IDL null, we will address both // Java null and IDL null: // Note: Local Objects can never be nil! if( obj == null ) { throw omgWrapper.rirWithNullObject() ; } // This check was made to determine that the objref is a // non-local objref that is fully // initialized: this was called only for its side-effects of // possibly throwing exceptions. However, registering // local objects should be permitted! // XXX/Revisit? // IOR ior = ORBUtility.getIOR( obj ) ; // Delegate to ORB. If ORB version throws InvalidName, convert to // equivalent Portable Interceptors InvalidName. try { orb.register_initial_reference( id, obj ); } catch( org.omg.CORBA.ORBPackage.InvalidName e ) { InvalidName exc = new InvalidName( e.getMessage() ); exc.initCause( e ) ; throw exc ; } } /** * This operation is only valid during post_init. It is identical to * ORB::resolve_initial_references. This same functionality exists here * because the ORB, not yet fully initialized, is not yet available, * but initial references may be required from the ORB as part * of Interceptor registration. * <p> * (incorporates changes from errata in orbos/00-01-01) * <p> * This method may not be called during pre_init. */ public org.omg.CORBA.Object resolve_initial_references (String id) throws InvalidName { checkStage(); if( id == null ) nullParam(); if( stage == STAGE_PRE_INIT ) { // Initializer is not allowed to invoke this method during // this stage. // _REVISIT_ Spec issue: What exception should really be // thrown here? throw wrapper.rirInvalidPreInit() ; } org.omg.CORBA.Object objRef = null; try { objRef = orb.resolve_initial_references( id ); } catch( org.omg.CORBA.ORBPackage.InvalidName e ) { // Convert PIDL to IDL exception: throw new InvalidName(); } return objRef; } // New method from CORBA 3.1 public void add_client_request_interceptor_with_policy ( ClientRequestInterceptor interceptor, Policy[] policies ) throws DuplicateName { // XXX ignore policies for now add_client_request_interceptor( interceptor ) ; } /** * This operation is used to add a client-side request Interceptor to * the list of client-side request Interceptors. * <p> * If a client-side request Interceptor has already been registered * with this Interceptor's name, DuplicateName is raised. */ public void add_client_request_interceptor ( ClientRequestInterceptor interceptor) throws DuplicateName { checkStage(); if( interceptor == null ) nullParam(); orb.getPIHandler().register_interceptor( interceptor, InterceptorList.INTERCEPTOR_TYPE_CLIENT ); } // New method from CORBA 3.1 public void add_server_request_interceptor_with_policy ( ServerRequestInterceptor interceptor, Policy[] policies ) throws DuplicateName, PolicyError { // XXX ignore policies for now add_server_request_interceptor( interceptor ) ; } /** * This operation is used to add a server-side request Interceptor to * the list of server-side request Interceptors. * <p> * If a server-side request Interceptor has already been registered * with this Interceptor's name, DuplicateName is raised. */ public void add_server_request_interceptor ( ServerRequestInterceptor interceptor) throws DuplicateName { checkStage(); if( interceptor == null ) nullParam(); orb.getPIHandler().register_interceptor( interceptor, InterceptorList.INTERCEPTOR_TYPE_SERVER ); } // New method from CORBA 3.1 public void add_ior_interceptor_with_policy ( IORInterceptor interceptor, Policy[] policies ) throws DuplicateName, PolicyError { // XXX ignore policies for now add_ior_interceptor( interceptor ) ; } /** * This operation is used to add an IOR Interceptor to * the list of IOR Interceptors. * <p> * If an IOR Interceptor has already been registered * with this Interceptor's name, DuplicateName is raised. */ public void add_ior_interceptor ( IORInterceptor interceptor ) throws DuplicateName { checkStage(); if( interceptor == null ) nullParam(); orb.getPIHandler().register_interceptor( interceptor, InterceptorList.INTERCEPTOR_TYPE_IOR ); } /** * A service calls allocate_slot_id to allocate a slot on * PortableInterceptor::Current. * * @return The index to the slot which has been allocated. */ public int allocate_slot_id () { checkStage(); return ((PICurrent)orb.getPIHandler().getPICurrent()).allocateSlotId( ); } /** * Register a PolicyFactory for the given PolicyType. * <p> * If a PolicyFactory already exists for the given PolicyType, * BAD_INV_ORDER is raised with a minor code of TBD_BIO+2. */ public void register_policy_factory( int type, PolicyFactory policy_factory ) { checkStage(); if( policy_factory == null ) nullParam(); orb.getPIHandler().registerPolicyFactory( type, policy_factory ); } /** * Called when an invalid null parameter was passed. Throws a * BAD_PARAM with a minor code of 1 */ private void nullParam() throws BAD_PARAM { throw orbutilWrapper.nullParam() ; } }
⏎ com/sun/corba/se/impl/interceptors/ORBInitInfoImpl.java
Or download all of them as a single archive file:
File name: jre-rt-com-1.8.0_191-src.zip File size: 8099783 bytes Release date: 2018-10-28 Download
⇒ Backup JDK 8 Installation Directory
2023-02-07, 235053👍, 3💬
Popular Posts:
What Is commons-io-2.11.jar? commons-io-2.11.jar is the JAR file for Commons IO 2.5, which is a libr...
JRE 8 deploy.jar is the JAR file for JRE 8 Java Control Panel and other deploy tools. JRE (Java Runt...
Java Cryptography Extension 1.2.2 JAR File Size and Download Location: File name: jce.jar, jce-1.2.2...
The Web Services Description Language for Java Toolkit (WSDL4J), Release 1.6.2, allows the creation,...
JasperReports, the world's most popular open source business intelligence and reporting engine and J...