Categories:
Audio (13)
Biotech (29)
Bytecode (36)
Database (77)
Framework (7)
Game (7)
General (507)
Graphics (53)
I/O (35)
IDE (2)
JAR Tools (102)
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 (322)
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/spi/activation/_ServerManagerStub.java
package com.sun.corba.se.spi.activation;
/**
* com/sun/corba/se/spi/activation/_ServerManagerStub.java .
* Generated by the IDL-to-Java compiler (portable), version "3.2"
* from c:/re/workspace/8-2-build-windows-amd64-cygwin/jdk8u191/11896/corba/src/share/classes/com/sun/corba/se/spi/activation/activation.idl
* Saturday, October 6, 2018 9:30:40 AM PDT
*/
public class _ServerManagerStub extends org.omg.CORBA.portable.ObjectImpl implements com.sun.corba.se.spi.activation.ServerManager
{
// A new ORB started server registers itself with the Activator
public void active (int serverId, com.sun.corba.se.spi.activation.Server serverObj) throws com.sun.corba.se.spi.activation.ServerNotRegistered
{
org.omg.CORBA.portable.InputStream $in = null;
try {
org.omg.CORBA.portable.OutputStream $out = _request ("active", true);
com.sun.corba.se.spi.activation.ServerIdHelper.write ($out, serverId);
com.sun.corba.se.spi.activation.ServerHelper.write ($out, serverObj);
$in = _invoke ($out);
return;
} catch (org.omg.CORBA.portable.ApplicationException $ex) {
$in = $ex.getInputStream ();
String _id = $ex.getId ();
if (_id.equals ("IDL:activation/ServerNotRegistered:1.0"))
throw com.sun.corba.se.spi.activation.ServerNotRegisteredHelper.read ($in);
else
throw new org.omg.CORBA.MARSHAL (_id);
} catch (org.omg.CORBA.portable.RemarshalException $rm) {
active (serverId, serverObj );
} finally {
_releaseReply ($in);
}
} // active
// Install a particular kind of endpoint
public void registerEndpoints (int serverId, String orbId, com.sun.corba.se.spi.activation.EndPointInfo[] endPointInfo) throws com.sun.corba.se.spi.activation.ServerNotRegistered, com.sun.corba.se.spi.activation.NoSuchEndPoint, com.sun.corba.se.spi.activation.ORBAlreadyRegistered
{
org.omg.CORBA.portable.InputStream $in = null;
try {
org.omg.CORBA.portable.OutputStream $out = _request ("registerEndpoints", true);
com.sun.corba.se.spi.activation.ServerIdHelper.write ($out, serverId);
com.sun.corba.se.spi.activation.ORBidHelper.write ($out, orbId);
com.sun.corba.se.spi.activation.EndpointInfoListHelper.write ($out, endPointInfo);
$in = _invoke ($out);
return;
} catch (org.omg.CORBA.portable.ApplicationException $ex) {
$in = $ex.getInputStream ();
String _id = $ex.getId ();
if (_id.equals ("IDL:activation/ServerNotRegistered:1.0"))
throw com.sun.corba.se.spi.activation.ServerNotRegisteredHelper.read ($in);
else if (_id.equals ("IDL:activation/NoSuchEndPoint:1.0"))
throw com.sun.corba.se.spi.activation.NoSuchEndPointHelper.read ($in);
else if (_id.equals ("IDL:activation/ORBAlreadyRegistered:1.0"))
throw com.sun.corba.se.spi.activation.ORBAlreadyRegisteredHelper.read ($in);
else
throw new org.omg.CORBA.MARSHAL (_id);
} catch (org.omg.CORBA.portable.RemarshalException $rm) {
registerEndpoints (serverId, orbId, endPointInfo );
} finally {
_releaseReply ($in);
}
} // registerEndpoints
// list active servers
public int[] getActiveServers ()
{
org.omg.CORBA.portable.InputStream $in = null;
try {
org.omg.CORBA.portable.OutputStream $out = _request ("getActiveServers", true);
$in = _invoke ($out);
int $result[] = com.sun.corba.se.spi.activation.ServerIdsHelper.read ($in);
return $result;
} catch (org.omg.CORBA.portable.ApplicationException $ex) {
$in = $ex.getInputStream ();
String _id = $ex.getId ();
throw new org.omg.CORBA.MARSHAL (_id);
} catch (org.omg.CORBA.portable.RemarshalException $rm) {
return getActiveServers ( );
} finally {
_releaseReply ($in);
}
} // getActiveServers
// If the server is not running, start it up.
public void activate (int serverId) throws com.sun.corba.se.spi.activation.ServerAlreadyActive, com.sun.corba.se.spi.activation.ServerNotRegistered, com.sun.corba.se.spi.activation.ServerHeldDown
{
org.omg.CORBA.portable.InputStream $in = null;
try {
org.omg.CORBA.portable.OutputStream $out = _request ("activate", true);
com.sun.corba.se.spi.activation.ServerIdHelper.write ($out, serverId);
$in = _invoke ($out);
return;
} catch (org.omg.CORBA.portable.ApplicationException $ex) {
$in = $ex.getInputStream ();
String _id = $ex.getId ();
if (_id.equals ("IDL:activation/ServerAlreadyActive:1.0"))
throw com.sun.corba.se.spi.activation.ServerAlreadyActiveHelper.read ($in);
else if (_id.equals ("IDL:activation/ServerNotRegistered:1.0"))
throw com.sun.corba.se.spi.activation.ServerNotRegisteredHelper.read ($in);
else if (_id.equals ("IDL:activation/ServerHeldDown:1.0"))
throw com.sun.corba.se.spi.activation.ServerHeldDownHelper.read ($in);
else
throw new org.omg.CORBA.MARSHAL (_id);
} catch (org.omg.CORBA.portable.RemarshalException $rm) {
activate (serverId );
} finally {
_releaseReply ($in);
}
} // activate
// If the server is running, shut it down
public void shutdown (int serverId) throws com.sun.corba.se.spi.activation.ServerNotActive, com.sun.corba.se.spi.activation.ServerNotRegistered
{
org.omg.CORBA.portable.InputStream $in = null;
try {
org.omg.CORBA.portable.OutputStream $out = _request ("shutdown", true);
com.sun.corba.se.spi.activation.ServerIdHelper.write ($out, serverId);
$in = _invoke ($out);
return;
} catch (org.omg.CORBA.portable.ApplicationException $ex) {
$in = $ex.getInputStream ();
String _id = $ex.getId ();
if (_id.equals ("IDL:activation/ServerNotActive:1.0"))
throw com.sun.corba.se.spi.activation.ServerNotActiveHelper.read ($in);
else if (_id.equals ("IDL:activation/ServerNotRegistered:1.0"))
throw com.sun.corba.se.spi.activation.ServerNotRegisteredHelper.read ($in);
else
throw new org.omg.CORBA.MARSHAL (_id);
} catch (org.omg.CORBA.portable.RemarshalException $rm) {
shutdown (serverId );
} finally {
_releaseReply ($in);
}
} // shutdown
// currently running, this method will activate it.
public void install (int serverId) throws com.sun.corba.se.spi.activation.ServerNotRegistered, com.sun.corba.se.spi.activation.ServerHeldDown, com.sun.corba.se.spi.activation.ServerAlreadyInstalled
{
org.omg.CORBA.portable.InputStream $in = null;
try {
org.omg.CORBA.portable.OutputStream $out = _request ("install", true);
com.sun.corba.se.spi.activation.ServerIdHelper.write ($out, serverId);
$in = _invoke ($out);
return;
} catch (org.omg.CORBA.portable.ApplicationException $ex) {
$in = $ex.getInputStream ();
String _id = $ex.getId ();
if (_id.equals ("IDL:activation/ServerNotRegistered:1.0"))
throw com.sun.corba.se.spi.activation.ServerNotRegisteredHelper.read ($in);
else if (_id.equals ("IDL:activation/ServerHeldDown:1.0"))
throw com.sun.corba.se.spi.activation.ServerHeldDownHelper.read ($in);
else if (_id.equals ("IDL:activation/ServerAlreadyInstalled:1.0"))
throw com.sun.corba.se.spi.activation.ServerAlreadyInstalledHelper.read ($in);
else
throw new org.omg.CORBA.MARSHAL (_id);
} catch (org.omg.CORBA.portable.RemarshalException $rm) {
install (serverId );
} finally {
_releaseReply ($in);
}
} // install
// list all registered ORBs for a server
public String[] getORBNames (int serverId) throws com.sun.corba.se.spi.activation.ServerNotRegistered
{
org.omg.CORBA.portable.InputStream $in = null;
try {
org.omg.CORBA.portable.OutputStream $out = _request ("getORBNames", true);
com.sun.corba.se.spi.activation.ServerIdHelper.write ($out, serverId);
$in = _invoke ($out);
String $result[] = com.sun.corba.se.spi.activation.ORBidListHelper.read ($in);
return $result;
} catch (org.omg.CORBA.portable.ApplicationException $ex) {
$in = $ex.getInputStream ();
String _id = $ex.getId ();
if (_id.equals ("IDL:activation/ServerNotRegistered:1.0"))
throw com.sun.corba.se.spi.activation.ServerNotRegisteredHelper.read ($in);
else
throw new org.omg.CORBA.MARSHAL (_id);
} catch (org.omg.CORBA.portable.RemarshalException $rm) {
return getORBNames (serverId );
} finally {
_releaseReply ($in);
}
} // getORBNames
// After this hook completes, the server may still be running.
public void uninstall (int serverId) throws com.sun.corba.se.spi.activation.ServerNotRegistered, com.sun.corba.se.spi.activation.ServerHeldDown, com.sun.corba.se.spi.activation.ServerAlreadyUninstalled
{
org.omg.CORBA.portable.InputStream $in = null;
try {
org.omg.CORBA.portable.OutputStream $out = _request ("uninstall", true);
com.sun.corba.se.spi.activation.ServerIdHelper.write ($out, serverId);
$in = _invoke ($out);
return;
} catch (org.omg.CORBA.portable.ApplicationException $ex) {
$in = $ex.getInputStream ();
String _id = $ex.getId ();
if (_id.equals ("IDL:activation/ServerNotRegistered:1.0"))
throw com.sun.corba.se.spi.activation.ServerNotRegisteredHelper.read ($in);
else if (_id.equals ("IDL:activation/ServerHeldDown:1.0"))
throw com.sun.corba.se.spi.activation.ServerHeldDownHelper.read ($in);
else if (_id.equals ("IDL:activation/ServerAlreadyUninstalled:1.0"))
throw com.sun.corba.se.spi.activation.ServerAlreadyUninstalledHelper.read ($in);
else
throw new org.omg.CORBA.MARSHAL (_id);
} catch (org.omg.CORBA.portable.RemarshalException $rm) {
uninstall (serverId );
} finally {
_releaseReply ($in);
}
} // uninstall
// Starts the server if it is not already running.
public com.sun.corba.se.spi.activation.LocatorPackage.ServerLocation locateServer (int serverId, String endPoint) throws com.sun.corba.se.spi.activation.NoSuchEndPoint, com.sun.corba.se.spi.activation.ServerNotRegistered, com.sun.corba.se.spi.activation.ServerHeldDown
{
org.omg.CORBA.portable.InputStream $in = null;
try {
org.omg.CORBA.portable.OutputStream $out = _request ("locateServer", true);
com.sun.corba.se.spi.activation.ServerIdHelper.write ($out, serverId);
$out.write_string (endPoint);
$in = _invoke ($out);
com.sun.corba.se.spi.activation.LocatorPackage.ServerLocation $result = com.sun.corba.se.spi.activation.LocatorPackage.ServerLocationHelper.read ($in);
return $result;
} catch (org.omg.CORBA.portable.ApplicationException $ex) {
$in = $ex.getInputStream ();
String _id = $ex.getId ();
if (_id.equals ("IDL:activation/NoSuchEndPoint:1.0"))
throw com.sun.corba.se.spi.activation.NoSuchEndPointHelper.read ($in);
else if (_id.equals ("IDL:activation/ServerNotRegistered:1.0"))
throw com.sun.corba.se.spi.activation.ServerNotRegisteredHelper.read ($in);
else if (_id.equals ("IDL:activation/ServerHeldDown:1.0"))
throw com.sun.corba.se.spi.activation.ServerHeldDownHelper.read ($in);
else
throw new org.omg.CORBA.MARSHAL (_id);
} catch (org.omg.CORBA.portable.RemarshalException $rm) {
return locateServer (serverId, endPoint );
} finally {
_releaseReply ($in);
}
} // locateServer
// Starts the server if it is not already running.
public com.sun.corba.se.spi.activation.LocatorPackage.ServerLocationPerORB locateServerForORB (int serverId, String orbId) throws com.sun.corba.se.spi.activation.InvalidORBid, com.sun.corba.se.spi.activation.ServerNotRegistered, com.sun.corba.se.spi.activation.ServerHeldDown
{
org.omg.CORBA.portable.InputStream $in = null;
try {
org.omg.CORBA.portable.OutputStream $out = _request ("locateServerForORB", true);
com.sun.corba.se.spi.activation.ServerIdHelper.write ($out, serverId);
com.sun.corba.se.spi.activation.ORBidHelper.write ($out, orbId);
$in = _invoke ($out);
com.sun.corba.se.spi.activation.LocatorPackage.ServerLocationPerORB $result = com.sun.corba.se.spi.activation.LocatorPackage.ServerLocationPerORBHelper.read ($in);
return $result;
} catch (org.omg.CORBA.portable.ApplicationException $ex) {
$in = $ex.getInputStream ();
String _id = $ex.getId ();
if (_id.equals ("IDL:activation/InvalidORBid:1.0"))
throw com.sun.corba.se.spi.activation.InvalidORBidHelper.read ($in);
else if (_id.equals ("IDL:activation/ServerNotRegistered:1.0"))
throw com.sun.corba.se.spi.activation.ServerNotRegisteredHelper.read ($in);
else if (_id.equals ("IDL:activation/ServerHeldDown:1.0"))
throw com.sun.corba.se.spi.activation.ServerHeldDownHelper.read ($in);
else
throw new org.omg.CORBA.MARSHAL (_id);
} catch (org.omg.CORBA.portable.RemarshalException $rm) {
return locateServerForORB (serverId, orbId );
} finally {
_releaseReply ($in);
}
} // locateServerForORB
// get the port for the endpoint of the locator
public int getEndpoint (String endPointType) throws com.sun.corba.se.spi.activation.NoSuchEndPoint
{
org.omg.CORBA.portable.InputStream $in = null;
try {
org.omg.CORBA.portable.OutputStream $out = _request ("getEndpoint", true);
$out.write_string (endPointType);
$in = _invoke ($out);
int $result = com.sun.corba.se.spi.activation.TCPPortHelper.read ($in);
return $result;
} catch (org.omg.CORBA.portable.ApplicationException $ex) {
$in = $ex.getInputStream ();
String _id = $ex.getId ();
if (_id.equals ("IDL:activation/NoSuchEndPoint:1.0"))
throw com.sun.corba.se.spi.activation.NoSuchEndPointHelper.read ($in);
else
throw new org.omg.CORBA.MARSHAL (_id);
} catch (org.omg.CORBA.portable.RemarshalException $rm) {
return getEndpoint (endPointType );
} finally {
_releaseReply ($in);
}
} // getEndpoint
// to pick a particular port type.
public int getServerPortForType (com.sun.corba.se.spi.activation.LocatorPackage.ServerLocationPerORB location, String endPointType) throws com.sun.corba.se.spi.activation.NoSuchEndPoint
{
org.omg.CORBA.portable.InputStream $in = null;
try {
org.omg.CORBA.portable.OutputStream $out = _request ("getServerPortForType", true);
com.sun.corba.se.spi.activation.LocatorPackage.ServerLocationPerORBHelper.write ($out, location);
$out.write_string (endPointType);
$in = _invoke ($out);
int $result = com.sun.corba.se.spi.activation.TCPPortHelper.read ($in);
return $result;
} catch (org.omg.CORBA.portable.ApplicationException $ex) {
$in = $ex.getInputStream ();
String _id = $ex.getId ();
if (_id.equals ("IDL:activation/NoSuchEndPoint:1.0"))
throw com.sun.corba.se.spi.activation.NoSuchEndPointHelper.read ($in);
else
throw new org.omg.CORBA.MARSHAL (_id);
} catch (org.omg.CORBA.portable.RemarshalException $rm) {
return getServerPortForType (location, endPointType );
} finally {
_releaseReply ($in);
}
} // getServerPortForType
// Type-specific CORBA::Object operations
private static String[] __ids = {
"IDL:activation/ServerManager:1.0",
"IDL:activation/Activator:1.0",
"IDL:activation/Locator:1.0"};
public String[] _ids ()
{
return (String[])__ids.clone ();
}
private void readObject (java.io.ObjectInputStream s) throws java.io.IOException
{
String str = s.readUTF ();
String[] args = null;
java.util.Properties props = null;
org.omg.CORBA.ORB orb = org.omg.CORBA.ORB.init (args, props);
try {
org.omg.CORBA.Object obj = orb.string_to_object (str);
org.omg.CORBA.portable.Delegate delegate = ((org.omg.CORBA.portable.ObjectImpl) obj)._get_delegate ();
_set_delegate (delegate);
} finally {
orb.destroy() ;
}
}
private void writeObject (java.io.ObjectOutputStream s) throws java.io.IOException
{
String[] args = null;
java.util.Properties props = null;
org.omg.CORBA.ORB orb = org.omg.CORBA.ORB.init (args, props);
try {
String str = orb.object_to_string (this);
s.writeUTF (str);
} finally {
orb.destroy() ;
}
}
} // class _ServerManagerStub
⏎ com/sun/corba/se/spi/activation/_ServerManagerStub.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, ≈821🔥, 3💬
Popular Posts:
JDK 11 java.management.jmod is the JMOD file for JDK 11 Management module. JDK 11 Management module ...
Apache Commons Codec library provides implementations of common encoders and decoders such as Base64...
Apache ZooKeeper is an open-source server which enables highly reliable distributed coordination. Ap...
JDK 17 jdk.xml.dom.jmod is the JMOD file for JDK 17 XML DOM module. JDK 17 XML DOM module compiled c...
How to download and install ojdbc11.jar for Oracle 21c? ojdbc11.jar for Oracle 21c is a Java JDBC Dr...