Files
openfoam/applications/utilities/preProcessing/FoamX/Java/FoamXServer/CaseServer/_ICaseServerStub.java
2008-04-15 18:56:58 +01:00

727 lines
30 KiB
Java

package FoamXServer.CaseServer;
/**
* FoamXServer/CaseServer/_ICaseServerStub.java .
* Generated by the IDL-to-Java compiler (portable), version "3.1"
* from FoamX.idl
* 02 April 2007 09:53:40 o'clock BST
*/
// ---------------------------------------------------------------------
public class _ICaseServerStub extends org.omg.CORBA.portable.ObjectImpl implements FoamXServer.CaseServer.ICaseServer
{
// Attributes.
public boolean managed ()
{
org.omg.CORBA.portable.InputStream $in = null;
try {
org.omg.CORBA.portable.OutputStream $out = _request ("_get_managed", true);
$in = _invoke ($out);
boolean $result = $in.read_boolean ();
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 managed ( );
} finally {
_releaseReply ($in);
}
} // managed
// Attributes.
public void managed (boolean newManaged)
{
org.omg.CORBA.portable.InputStream $in = null;
try {
org.omg.CORBA.portable.OutputStream $out = _request ("_set_managed", true);
$out.write_boolean (newManaged);
$in = _invoke ($out);
return;
} 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) {
managed (newManaged );
} finally {
_releaseReply ($in);
}
} // managed
public String caseRoot ()
{
org.omg.CORBA.portable.InputStream $in = null;
try {
org.omg.CORBA.portable.OutputStream $out = _request ("_get_caseRoot", true);
$in = _invoke ($out);
String $result = $in.read_string ();
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 caseRoot ( );
} finally {
_releaseReply ($in);
}
} // caseRoot
public String caseName ()
{
org.omg.CORBA.portable.InputStream $in = null;
try {
org.omg.CORBA.portable.OutputStream $out = _request ("_get_caseName", true);
$in = _invoke ($out);
String $result = $in.read_string ();
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 caseName ( );
} finally {
_releaseReply ($in);
}
} // caseName
// Application class for this case (read only).
public FoamXServer.CaseServer.IApplication application ()
{
org.omg.CORBA.portable.InputStream $in = null;
try {
org.omg.CORBA.portable.OutputStream $out = _request ("_get_application", true);
$in = _invoke ($out);
FoamXServer.CaseServer.IApplication $result = FoamXServer.CaseServer.IApplicationHelper.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 application ( );
} finally {
_releaseReply ($in);
}
} // application
// Foam system properties (read only).
public FoamXServer.CaseServer.IFoamProperties foamProperties ()
{
org.omg.CORBA.portable.InputStream $in = null;
try {
org.omg.CORBA.portable.OutputStream $out = _request ("_get_foamProperties", true);
$in = _invoke ($out);
FoamXServer.CaseServer.IFoamProperties $result = FoamXServer.CaseServer.IFoamPropertiesHelper.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 foamProperties ( );
} finally {
_releaseReply ($in);
}
} // foamProperties
// Time-steps.
public String[] availableTimeSteps ()
{
org.omg.CORBA.portable.InputStream $in = null;
try {
org.omg.CORBA.portable.OutputStream $out = _request ("_get_availableTimeSteps", true);
$in = _invoke ($out);
String $result[] = FoamXServer.StringListHelper.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 availableTimeSteps ( );
} finally {
_releaseReply ($in);
}
} // availableTimeSteps
// Get current time
public String getTime () throws FoamXServer.FoamXError, FoamXServer.FoamXIOError
{
org.omg.CORBA.portable.InputStream $in = null;
try {
org.omg.CORBA.portable.OutputStream $out = _request ("getTime", true);
$in = _invoke ($out);
String $result = $in.read_string ();
return $result;
} catch (org.omg.CORBA.portable.ApplicationException $ex) {
$in = $ex.getInputStream ();
String _id = $ex.getId ();
if (_id.equals ("IDL:FoamXServer/FoamXError:1.0"))
throw FoamXServer.FoamXErrorHelper.read ($in);
else if (_id.equals ("IDL:FoamXServer/FoamXIOError:1.0"))
throw FoamXServer.FoamXIOErrorHelper.read ($in);
else
throw new org.omg.CORBA.MARSHAL (_id);
} catch (org.omg.CORBA.portable.RemarshalException $rm) {
return getTime ( );
} finally {
_releaseReply ($in);
}
} // getTime
// Set time
public void setTime (String timeName, int timeIndex) throws FoamXServer.FoamXError, FoamXServer.FoamXIOError
{
org.omg.CORBA.portable.InputStream $in = null;
try {
org.omg.CORBA.portable.OutputStream $out = _request ("setTime", true);
$out.write_string (timeName);
$out.write_long (timeIndex);
$in = _invoke ($out);
return;
} catch (org.omg.CORBA.portable.ApplicationException $ex) {
$in = $ex.getInputStream ();
String _id = $ex.getId ();
if (_id.equals ("IDL:FoamXServer/FoamXError:1.0"))
throw FoamXServer.FoamXErrorHelper.read ($in);
else if (_id.equals ("IDL:FoamXServer/FoamXIOError:1.0"))
throw FoamXServer.FoamXIOErrorHelper.read ($in);
else
throw new org.omg.CORBA.MARSHAL (_id);
} catch (org.omg.CORBA.portable.RemarshalException $rm) {
setTime (timeName, timeIndex );
} finally {
_releaseReply ($in);
}
} // setTime
// Mesh.
public boolean meshDefined ()
{
org.omg.CORBA.portable.InputStream $in = null;
try {
org.omg.CORBA.portable.OutputStream $out = _request ("_get_meshDefined", true);
$in = _invoke ($out);
boolean $result = $in.read_boolean ();
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 meshDefined ( );
} finally {
_releaseReply ($in);
}
} // meshDefined
public void readMesh () throws FoamXServer.FoamXError, FoamXServer.FoamXIOError
{
org.omg.CORBA.portable.InputStream $in = null;
try {
org.omg.CORBA.portable.OutputStream $out = _request ("readMesh", true);
$in = _invoke ($out);
return;
} catch (org.omg.CORBA.portable.ApplicationException $ex) {
$in = $ex.getInputStream ();
String _id = $ex.getId ();
if (_id.equals ("IDL:FoamXServer/FoamXError:1.0"))
throw FoamXServer.FoamXErrorHelper.read ($in);
else if (_id.equals ("IDL:FoamXServer/FoamXIOError:1.0"))
throw FoamXServer.FoamXIOErrorHelper.read ($in);
else
throw new org.omg.CORBA.MARSHAL (_id);
} catch (org.omg.CORBA.portable.RemarshalException $rm) {
readMesh ( );
} finally {
_releaseReply ($in);
}
} // readMesh
public void importMesh (String hostName, String rootDir, String caseName) throws FoamXServer.FoamXError, FoamXServer.FoamXIOError
{
org.omg.CORBA.portable.InputStream $in = null;
try {
org.omg.CORBA.portable.OutputStream $out = _request ("importMesh", true);
$out.write_string (hostName);
$out.write_string (rootDir);
$out.write_string (caseName);
$in = _invoke ($out);
return;
} catch (org.omg.CORBA.portable.ApplicationException $ex) {
$in = $ex.getInputStream ();
String _id = $ex.getId ();
if (_id.equals ("IDL:FoamXServer/FoamXError:1.0"))
throw FoamXServer.FoamXErrorHelper.read ($in);
else if (_id.equals ("IDL:FoamXServer/FoamXIOError:1.0"))
throw FoamXServer.FoamXIOErrorHelper.read ($in);
else
throw new org.omg.CORBA.MARSHAL (_id);
} catch (org.omg.CORBA.portable.RemarshalException $rm) {
importMesh (hostName, rootDir, caseName );
} finally {
_releaseReply ($in);
}
} // importMesh
// Field values.
public void getFieldValues (String fieldName, FoamXServer.CaseServer.IGeometricFieldHolder fieldValues) throws FoamXServer.FoamXError, FoamXServer.FoamXIOError
{
org.omg.CORBA.portable.InputStream $in = null;
try {
org.omg.CORBA.portable.OutputStream $out = _request ("getFieldValues", true);
$out.write_string (fieldName);
$in = _invoke ($out);
fieldValues.value = FoamXServer.CaseServer.IGeometricFieldHelper.read ($in);
return;
} catch (org.omg.CORBA.portable.ApplicationException $ex) {
$in = $ex.getInputStream ();
String _id = $ex.getId ();
if (_id.equals ("IDL:FoamXServer/FoamXError:1.0"))
throw FoamXServer.FoamXErrorHelper.read ($in);
else if (_id.equals ("IDL:FoamXServer/FoamXIOError:1.0"))
throw FoamXServer.FoamXIOErrorHelper.read ($in);
else
throw new org.omg.CORBA.MARSHAL (_id);
} catch (org.omg.CORBA.portable.RemarshalException $rm) {
getFieldValues (fieldName, fieldValues );
} finally {
_releaseReply ($in);
}
} // getFieldValues
// Patches.
public String[] patchNames ()
{
org.omg.CORBA.portable.InputStream $in = null;
try {
org.omg.CORBA.portable.OutputStream $out = _request ("_get_patchNames", true);
$in = _invoke ($out);
String $result[] = FoamXServer.StringListHelper.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 patchNames ( );
} finally {
_releaseReply ($in);
}
} // patchNames
public void addPatch (String patchName, String patchPhysicalType) throws FoamXServer.FoamXError, FoamXServer.FoamXIOError
{
org.omg.CORBA.portable.InputStream $in = null;
try {
org.omg.CORBA.portable.OutputStream $out = _request ("addPatch", true);
$out.write_string (patchName);
$out.write_string (patchPhysicalType);
$in = _invoke ($out);
return;
} catch (org.omg.CORBA.portable.ApplicationException $ex) {
$in = $ex.getInputStream ();
String _id = $ex.getId ();
if (_id.equals ("IDL:FoamXServer/FoamXError:1.0"))
throw FoamXServer.FoamXErrorHelper.read ($in);
else if (_id.equals ("IDL:FoamXServer/FoamXIOError:1.0"))
throw FoamXServer.FoamXIOErrorHelper.read ($in);
else
throw new org.omg.CORBA.MARSHAL (_id);
} catch (org.omg.CORBA.portable.RemarshalException $rm) {
addPatch (patchName, patchPhysicalType );
} finally {
_releaseReply ($in);
}
} // addPatch
public void deletePatch (String patchName) throws FoamXServer.FoamXError, FoamXServer.FoamXIOError
{
org.omg.CORBA.portable.InputStream $in = null;
try {
org.omg.CORBA.portable.OutputStream $out = _request ("deletePatch", true);
$out.write_string (patchName);
$in = _invoke ($out);
return;
} catch (org.omg.CORBA.portable.ApplicationException $ex) {
$in = $ex.getInputStream ();
String _id = $ex.getId ();
if (_id.equals ("IDL:FoamXServer/FoamXError:1.0"))
throw FoamXServer.FoamXErrorHelper.read ($in);
else if (_id.equals ("IDL:FoamXServer/FoamXIOError:1.0"))
throw FoamXServer.FoamXIOErrorHelper.read ($in);
else
throw new org.omg.CORBA.MARSHAL (_id);
} catch (org.omg.CORBA.portable.RemarshalException $rm) {
deletePatch (patchName );
} finally {
_releaseReply ($in);
}
} // deletePatch
public void deleteAllPatches () throws FoamXServer.FoamXError, FoamXServer.FoamXIOError
{
org.omg.CORBA.portable.InputStream $in = null;
try {
org.omg.CORBA.portable.OutputStream $out = _request ("deleteAllPatches", true);
$in = _invoke ($out);
return;
} catch (org.omg.CORBA.portable.ApplicationException $ex) {
$in = $ex.getInputStream ();
String _id = $ex.getId ();
if (_id.equals ("IDL:FoamXServer/FoamXError:1.0"))
throw FoamXServer.FoamXErrorHelper.read ($in);
else if (_id.equals ("IDL:FoamXServer/FoamXIOError:1.0"))
throw FoamXServer.FoamXIOErrorHelper.read ($in);
else
throw new org.omg.CORBA.MARSHAL (_id);
} catch (org.omg.CORBA.portable.RemarshalException $rm) {
deleteAllPatches ( );
} finally {
_releaseReply ($in);
}
} // deleteAllPatches
// Patch physical type
public void setPatchPhysicalType (String patchName, String patchPhysicalType) throws FoamXServer.FoamXError, FoamXServer.FoamXIOError
{
org.omg.CORBA.portable.InputStream $in = null;
try {
org.omg.CORBA.portable.OutputStream $out = _request ("setPatchPhysicalType", true);
$out.write_string (patchName);
$out.write_string (patchPhysicalType);
$in = _invoke ($out);
return;
} catch (org.omg.CORBA.portable.ApplicationException $ex) {
$in = $ex.getInputStream ();
String _id = $ex.getId ();
if (_id.equals ("IDL:FoamXServer/FoamXError:1.0"))
throw FoamXServer.FoamXErrorHelper.read ($in);
else if (_id.equals ("IDL:FoamXServer/FoamXIOError:1.0"))
throw FoamXServer.FoamXIOErrorHelper.read ($in);
else
throw new org.omg.CORBA.MARSHAL (_id);
} catch (org.omg.CORBA.portable.RemarshalException $rm) {
setPatchPhysicalType (patchName, patchPhysicalType );
} finally {
_releaseReply ($in);
}
} // setPatchPhysicalType
public void getPatchPhysicalType (String patchName, org.omg.CORBA.StringHolder patchPhysicalType) throws FoamXServer.FoamXError, FoamXServer.FoamXIOError
{
org.omg.CORBA.portable.InputStream $in = null;
try {
org.omg.CORBA.portable.OutputStream $out = _request ("getPatchPhysicalType", true);
$out.write_string (patchName);
$in = _invoke ($out);
patchPhysicalType.value = $in.read_string ();
return;
} catch (org.omg.CORBA.portable.ApplicationException $ex) {
$in = $ex.getInputStream ();
String _id = $ex.getId ();
if (_id.equals ("IDL:FoamXServer/FoamXError:1.0"))
throw FoamXServer.FoamXErrorHelper.read ($in);
else if (_id.equals ("IDL:FoamXServer/FoamXIOError:1.0"))
throw FoamXServer.FoamXIOErrorHelper.read ($in);
else
throw new org.omg.CORBA.MARSHAL (_id);
} catch (org.omg.CORBA.portable.RemarshalException $rm) {
getPatchPhysicalType (patchName, patchPhysicalType );
} finally {
_releaseReply ($in);
}
} // getPatchPhysicalType
// Dictionaries.
public void getDictionary (String dictionaryName, boolean forceRead, FoamXServer.IDictionaryEntryHolder dictRoot) throws FoamXServer.FoamXError, FoamXServer.FoamXIOError
{
org.omg.CORBA.portable.InputStream $in = null;
try {
org.omg.CORBA.portable.OutputStream $out = _request ("getDictionary", true);
$out.write_string (dictionaryName);
$out.write_boolean (forceRead);
$in = _invoke ($out);
dictRoot.value = FoamXServer.IDictionaryEntryHelper.read ($in);
return;
} catch (org.omg.CORBA.portable.ApplicationException $ex) {
$in = $ex.getInputStream ();
String _id = $ex.getId ();
if (_id.equals ("IDL:FoamXServer/FoamXError:1.0"))
throw FoamXServer.FoamXErrorHelper.read ($in);
else if (_id.equals ("IDL:FoamXServer/FoamXIOError:1.0"))
throw FoamXServer.FoamXIOErrorHelper.read ($in);
else
throw new org.omg.CORBA.MARSHAL (_id);
} catch (org.omg.CORBA.portable.RemarshalException $rm) {
getDictionary (dictionaryName, forceRead, dictRoot );
} finally {
_releaseReply ($in);
}
} // getDictionary
public void readFile (String name, org.omg.CORBA.StringHolder contents) throws FoamXServer.FoamXError, FoamXServer.FoamXIOError
{
org.omg.CORBA.portable.InputStream $in = null;
try {
org.omg.CORBA.portable.OutputStream $out = _request ("readFile", true);
$out.write_string (name);
$in = _invoke ($out);
contents.value = $in.read_string ();
return;
} catch (org.omg.CORBA.portable.ApplicationException $ex) {
$in = $ex.getInputStream ();
String _id = $ex.getId ();
if (_id.equals ("IDL:FoamXServer/FoamXError:1.0"))
throw FoamXServer.FoamXErrorHelper.read ($in);
else if (_id.equals ("IDL:FoamXServer/FoamXIOError:1.0"))
throw FoamXServer.FoamXIOErrorHelper.read ($in);
else
throw new org.omg.CORBA.MARSHAL (_id);
} catch (org.omg.CORBA.portable.RemarshalException $rm) {
readFile (name, contents );
} finally {
_releaseReply ($in);
}
} // readFile
public void writeFile (String name, String contents) throws FoamXServer.FoamXError, FoamXServer.FoamXIOError
{
org.omg.CORBA.portable.InputStream $in = null;
try {
org.omg.CORBA.portable.OutputStream $out = _request ("writeFile", true);
$out.write_string (name);
$out.write_string (contents);
$in = _invoke ($out);
return;
} catch (org.omg.CORBA.portable.ApplicationException $ex) {
$in = $ex.getInputStream ();
String _id = $ex.getId ();
if (_id.equals ("IDL:FoamXServer/FoamXError:1.0"))
throw FoamXServer.FoamXErrorHelper.read ($in);
else if (_id.equals ("IDL:FoamXServer/FoamXIOError:1.0"))
throw FoamXServer.FoamXIOErrorHelper.read ($in);
else
throw new org.omg.CORBA.MARSHAL (_id);
} catch (org.omg.CORBA.portable.RemarshalException $rm) {
writeFile (name, contents );
} finally {
_releaseReply ($in);
}
} // writeFile
// Get modification date
public int fileModificationDate (String fileName) throws FoamXServer.FoamXIOError
{
org.omg.CORBA.portable.InputStream $in = null;
try {
org.omg.CORBA.portable.OutputStream $out = _request ("fileModificationDate", true);
$out.write_string (fileName);
$in = _invoke ($out);
int $result = $in.read_long ();
return $result;
} catch (org.omg.CORBA.portable.ApplicationException $ex) {
$in = $ex.getInputStream ();
String _id = $ex.getId ();
if (_id.equals ("IDL:FoamXServer/FoamXIOError:1.0"))
throw FoamXServer.FoamXIOErrorHelper.read ($in);
else
throw new org.omg.CORBA.MARSHAL (_id);
} catch (org.omg.CORBA.portable.RemarshalException $rm) {
return fileModificationDate (fileName );
} finally {
_releaseReply ($in);
}
} // fileModificationDate
//- Calculation control.
public int runCase (String arguments) throws FoamXServer.FoamXError, FoamXServer.FoamXIOError
{
org.omg.CORBA.portable.InputStream $in = null;
try {
org.omg.CORBA.portable.OutputStream $out = _request ("runCase", true);
$out.write_string (arguments);
$in = _invoke ($out);
int $result = $in.read_long ();
return $result;
} catch (org.omg.CORBA.portable.ApplicationException $ex) {
$in = $ex.getInputStream ();
String _id = $ex.getId ();
if (_id.equals ("IDL:FoamXServer/FoamXError:1.0"))
throw FoamXServer.FoamXErrorHelper.read ($in);
else if (_id.equals ("IDL:FoamXServer/FoamXIOError:1.0"))
throw FoamXServer.FoamXIOErrorHelper.read ($in);
else
throw new org.omg.CORBA.MARSHAL (_id);
} catch (org.omg.CORBA.portable.RemarshalException $rm) {
return runCase (arguments );
} finally {
_releaseReply ($in);
}
} // runCase
public void killCase () throws FoamXServer.FoamXError
{
org.omg.CORBA.portable.InputStream $in = null;
try {
org.omg.CORBA.portable.OutputStream $out = _request ("killCase", true);
$in = _invoke ($out);
return;
} catch (org.omg.CORBA.portable.ApplicationException $ex) {
$in = $ex.getInputStream ();
String _id = $ex.getId ();
if (_id.equals ("IDL:FoamXServer/FoamXError:1.0"))
throw FoamXServer.FoamXErrorHelper.read ($in);
else
throw new org.omg.CORBA.MARSHAL (_id);
} catch (org.omg.CORBA.portable.RemarshalException $rm) {
killCase ( );
} finally {
_releaseReply ($in);
}
} // killCase
//- Validation.
public void validate () throws FoamXServer.FoamXError, FoamXServer.FoamXIOError, FoamXServer.ValidationError
{
org.omg.CORBA.portable.InputStream $in = null;
try {
org.omg.CORBA.portable.OutputStream $out = _request ("validate", true);
$in = _invoke ($out);
return;
} catch (org.omg.CORBA.portable.ApplicationException $ex) {
$in = $ex.getInputStream ();
String _id = $ex.getId ();
if (_id.equals ("IDL:FoamXServer/FoamXError:1.0"))
throw FoamXServer.FoamXErrorHelper.read ($in);
else if (_id.equals ("IDL:FoamXServer/FoamXIOError:1.0"))
throw FoamXServer.FoamXIOErrorHelper.read ($in);
else if (_id.equals ("IDL:FoamXServer/ValidationError:1.0"))
throw FoamXServer.ValidationErrorHelper.read ($in);
else
throw new org.omg.CORBA.MARSHAL (_id);
} catch (org.omg.CORBA.portable.RemarshalException $rm) {
validate ( );
} finally {
_releaseReply ($in);
}
} // validate
// Returns true if this has been modified
public boolean modified ()
{
org.omg.CORBA.portable.InputStream $in = null;
try {
org.omg.CORBA.portable.OutputStream $out = _request ("modified", true);
$in = _invoke ($out);
boolean $result = $in.read_boolean ();
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 modified ( );
} finally {
_releaseReply ($in);
}
} // modified
//- Persistence.
public void save () throws FoamXServer.FoamXError, FoamXServer.FoamXIOError, FoamXServer.ValidationError
{
org.omg.CORBA.portable.InputStream $in = null;
try {
org.omg.CORBA.portable.OutputStream $out = _request ("save", true);
$in = _invoke ($out);
return;
} catch (org.omg.CORBA.portable.ApplicationException $ex) {
$in = $ex.getInputStream ();
String _id = $ex.getId ();
if (_id.equals ("IDL:FoamXServer/FoamXError:1.0"))
throw FoamXServer.FoamXErrorHelper.read ($in);
else if (_id.equals ("IDL:FoamXServer/FoamXIOError:1.0"))
throw FoamXServer.FoamXIOErrorHelper.read ($in);
else if (_id.equals ("IDL:FoamXServer/ValidationError:1.0"))
throw FoamXServer.ValidationErrorHelper.read ($in);
else
throw new org.omg.CORBA.MARSHAL (_id);
} catch (org.omg.CORBA.portable.RemarshalException $rm) {
save ( );
} finally {
_releaseReply ($in);
}
} // save
//- Lifetime management.
public void close ()
{
org.omg.CORBA.portable.InputStream $in = null;
try {
org.omg.CORBA.portable.OutputStream $out = _request ("close", false);
$in = _invoke ($out);
return;
} 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) {
close ( );
} finally {
_releaseReply ($in);
}
} // close
// Type-specific CORBA::Object operations
private static String[] __ids = {
"IDL:FoamXServer/CaseServer/ICaseServer: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 _ICaseServerStub