📄 _servermanagerstub.java
字号:
org.omg.CORBA.portable.InputStream $in = null;
try {
org.omg.CORBA.portable.OutputStream $out = _request ("uninstall", true);
org.omg.PortableInterceptor.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:PortableActivationIDL/ServerNotRegistered:1.0"))
throw com.sun.corba.se.PortableActivationIDL.ServerNotRegisteredHelper.read ($in);
else if (_id.equals ("IDL:PortableActivationIDL/ServerHeldDown:1.0"))
throw com.sun.corba.se.PortableActivationIDL.ServerHeldDownHelper.read ($in);
else if (_id.equals ("IDL:PortableActivationIDL/ServerAlreadyUninstalled:1.0"))
throw com.sun.corba.se.PortableActivationIDL.ServerAlreadyUninstalledHelper.read ($in);
else
throw new org.omg.CORBA.MARSHAL (_id);
} catch (org.omg.CORBA.portable.RemarshalException $rm) {
uninstall (serverId );
} finally {
_releaseReply ($in);
}
} // uninstall
/** list active servers */
public String[] getActiveServers ()
{
org.omg.CORBA.portable.InputStream $in = null;
try {
org.omg.CORBA.portable.OutputStream $out = _request ("getActiveServers", true);
$in = _invoke ($out);
String $result[] = com.sun.corba.se.PortableActivationIDL.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
/** list all registered ORBs for a server */
public String[] getORBNames (String serverId) throws com.sun.corba.se.PortableActivationIDL.ServerNotRegistered
{
org.omg.CORBA.portable.InputStream $in = null;
try {
org.omg.CORBA.portable.OutputStream $out = _request ("getORBNames", true);
org.omg.PortableInterceptor.ServerIdHelper.write ($out, serverId);
$in = _invoke ($out);
String $result[] = com.sun.corba.se.PortableActivationIDL.ORBidListHelper.read ($in);
return $result;
} catch (org.omg.CORBA.portable.ApplicationException $ex) {
$in = $ex.getInputStream ();
String _id = $ex.getId ();
if (_id.equals ("IDL:PortableActivationIDL/ServerNotRegistered:1.0"))
throw com.sun.corba.se.PortableActivationIDL.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
/** Find the server template that corresponds to the ORBD's * adapter id. */
public org.omg.PortableInterceptor.ObjectReferenceTemplate lookupPOATemplate (String serverId, String orbId, String[] orbAdapterName)
{
org.omg.CORBA.portable.InputStream $in = null;
try {
org.omg.CORBA.portable.OutputStream $out = _request ("lookupPOATemplate", true);
org.omg.PortableInterceptor.ServerIdHelper.write ($out, serverId);
org.omg.PortableInterceptor.ORBIdHelper.write ($out, orbId);
org.omg.PortableInterceptor.AdapterNameHelper.write ($out, orbAdapterName);
$in = _invoke ($out);
org.omg.PortableInterceptor.ObjectReferenceTemplate $result = org.omg.PortableInterceptor.ObjectReferenceTemplateHelper.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 lookupPOATemplate (serverId, orbId, orbAdapterName );
} finally {
_releaseReply ($in);
}
} // lookupPOATemplate
/** locate server - returns the port with a specific type for all registered * ORBs of an active server. * Starts the server if it is not already running. */
public com.sun.corba.se.PortableActivationIDL.LocatorPackage.ServerLocationPerType locateServer (String serverId, String endPoint) throws com.sun.corba.se.PortableActivationIDL.NoSuchEndPoint, com.sun.corba.se.PortableActivationIDL.ServerNotRegistered, com.sun.corba.se.PortableActivationIDL.ServerHeldDown
{
org.omg.CORBA.portable.InputStream $in = null;
try {
org.omg.CORBA.portable.OutputStream $out = _request ("locateServer", true);
org.omg.PortableInterceptor.ServerIdHelper.write ($out, serverId);
$out.write_string (endPoint);
$in = _invoke ($out);
com.sun.corba.se.PortableActivationIDL.LocatorPackage.ServerLocationPerType $result = com.sun.corba.se.PortableActivationIDL.LocatorPackage.ServerLocationPerTypeHelper.read ($in);
return $result;
} catch (org.omg.CORBA.portable.ApplicationException $ex) {
$in = $ex.getInputStream ();
String _id = $ex.getId ();
if (_id.equals ("IDL:PortableActivationIDL/NoSuchEndPoint:1.0"))
throw com.sun.corba.se.PortableActivationIDL.NoSuchEndPointHelper.read ($in);
else if (_id.equals ("IDL:PortableActivationIDL/ServerNotRegistered:1.0"))
throw com.sun.corba.se.PortableActivationIDL.ServerNotRegisteredHelper.read ($in);
else if (_id.equals ("IDL:PortableActivationIDL/ServerHeldDown:1.0"))
throw com.sun.corba.se.PortableActivationIDL.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
/** locate server - returns all ports registered with a specified ORB for * an active server * Starts the server if it is not already running. */
public com.sun.corba.se.PortableActivationIDL.LocatorPackage.ServerLocationPerORB locateServerForORB (String serverId, String orbId) throws com.sun.corba.se.PortableActivationIDL.InvalidORBid, com.sun.corba.se.PortableActivationIDL.ServerNotRegistered, com.sun.corba.se.PortableActivationIDL.ServerHeldDown
{
org.omg.CORBA.portable.InputStream $in = null;
try {
org.omg.CORBA.portable.OutputStream $out = _request ("locateServerForORB", true);
org.omg.PortableInterceptor.ServerIdHelper.write ($out, serverId);
org.omg.PortableInterceptor.ORBIdHelper.write ($out, orbId);
$in = _invoke ($out);
com.sun.corba.se.PortableActivationIDL.LocatorPackage.ServerLocationPerORB $result = com.sun.corba.se.PortableActivationIDL.LocatorPackage.ServerLocationPerORBHelper.read ($in);
return $result;
} catch (org.omg.CORBA.portable.ApplicationException $ex) {
$in = $ex.getInputStream ();
String _id = $ex.getId ();
if (_id.equals ("IDL:PortableActivationIDL/InvalidORBid:1.0"))
throw com.sun.corba.se.PortableActivationIDL.InvalidORBidHelper.read ($in);
else if (_id.equals ("IDL:PortableActivationIDL/ServerNotRegistered:1.0"))
throw com.sun.corba.se.PortableActivationIDL.ServerNotRegisteredHelper.read ($in);
else if (_id.equals ("IDL:PortableActivationIDL/ServerHeldDown:1.0"))
throw com.sun.corba.se.PortableActivationIDL.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.PortableActivationIDL.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.PortableActivationIDL.TCPPortHelper.read ($in);
return $result;
} catch (org.omg.CORBA.portable.ApplicationException $ex) {
$in = $ex.getInputStream ();
String _id = $ex.getId ();
if (_id.equals ("IDL:PortableActivationIDL/NoSuchEndPoint:1.0"))
throw com.sun.corba.se.PortableActivationIDL.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
/** Useful from external BadServerIdHandlers which need * to pick a particular port type. */
public int getServerPortForType (com.sun.corba.se.PortableActivationIDL.LocatorPackage.ServerLocationPerORB location, String endPointType) throws com.sun.corba.se.PortableActivationIDL.NoSuchEndPoint
{
org.omg.CORBA.portable.InputStream $in = null;
try {
org.omg.CORBA.portable.OutputStream $out = _request ("getServerPortForType", true);
com.sun.corba.se.PortableActivationIDL.LocatorPackage.ServerLocationPerORBHelper.write ($out, location);
$out.write_string (endPointType);
$in = _invoke ($out);
int $result = com.sun.corba.se.PortableActivationIDL.TCPPortHelper.read ($in);
return $result;
} catch (org.omg.CORBA.portable.ApplicationException $ex) {
$in = $ex.getInputStream ();
String _id = $ex.getId ();
if (_id.equals ("IDL:PortableActivationIDL/NoSuchEndPoint:1.0"))
throw com.sun.corba.se.PortableActivationIDL.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:PortableActivationIDL/ServerManager:1.0",
"IDL:PortableActivationIDL/Activator:1.0",
"IDL:PortableActivationIDL/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.Object obj = org.omg.CORBA.ORB.init (args, props).string_to_object (str);
org.omg.CORBA.portable.Delegate delegate = ((org.omg.CORBA.portable.ObjectImpl) obj)._get_delegate ();
_set_delegate (delegate);
}
private void writeObject (java.io.ObjectOutputStream s) throws java.io.IOException
{
String[] args = null;
java.util.Properties props = null;
String str = org.omg.CORBA.ORB.init (args, props).object_to_string (this);
s.writeUTF (str);
}
} // class _ServerManagerStub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -