use of org.vcell.util.BigString in project vcell by virtualcell.
the class LocalUserMetaDbServerMessaging method getVCImageXML.
/**
* getVersionInfo method comment.
* @throws RemoteException
*/
public BigString getVCImageXML(KeyValue imageKey) throws DataAccessException, ObjectNotFoundException {
try {
log.print("LocalUserMetaDbServerMessaging.getSimulationXML(imageKey=" + imageKey + ")");
BigString xml = dbServerProxy.getVCImageXML(imageKey);
return xml;
} catch (DataAccessException e) {
log.exception(e);
throw e;
} catch (Throwable e) {
log.exception(e);
throw new DataAccessException(e.getMessage());
}
}
use of org.vcell.util.BigString in project vcell by virtualcell.
the class LocalUserMetaDbServerMessaging method getSimulationXML.
/**
* getVersionInfo method comment.
* @throws RemoteException
*/
public BigString getSimulationXML(KeyValue simKey) throws DataAccessException, ObjectNotFoundException {
try {
log.print("LocalUserMetaDbServerMessaging.getSimulationXML(simKey=" + simKey + ")");
BigString xml = dbServerProxy.getSimulationXML(simKey);
return xml;
} catch (DataAccessException e) {
log.exception(e);
throw e;
} catch (Throwable e) {
log.exception(e);
throw new DataAccessException(e.getMessage());
}
}
use of org.vcell.util.BigString in project vcell by virtualcell.
the class LocalUserMetaDbServerMessaging method saveBioModelAs.
/**
* getVersionInfo method comment.
* @throws RemoteException
*/
public BigString saveBioModelAs(BigString bioModelXML, String newName, String[] independentSims) throws DataAccessException {
try {
log.print("LocalUserMetaDbServerMessaging.saveBioModel(newName=" + newName + ")");
BigString savedBioModelXML = dbServerProxy.saveBioModelAs(bioModelXML, newName, independentSims);
return savedBioModelXML;
} catch (DataAccessException e) {
log.exception(e);
throw e;
} catch (Throwable e) {
log.exception(e);
throw new DataAccessException(e.getMessage());
}
}
use of org.vcell.util.BigString in project vcell by virtualcell.
the class LocalUserMetaDbServerMessaging method saveGeometry.
/**
* getVersionInfo method comment.
* @throws RemoteException
*/
public BigString saveGeometry(BigString geometryXML) throws DataAccessException {
try {
log.print("LocalUserMetaDbServerMessaging.saveGeometry()");
BigString savedGeometryXML = dbServerProxy.saveGeometry(geometryXML);
return savedGeometryXML;
} catch (DataAccessException e) {
log.exception(e);
throw e;
} catch (Throwable e) {
log.exception(e);
throw new DataAccessException(e.getMessage());
}
}
use of org.vcell.util.BigString in project vcell by virtualcell.
the class LocalUserMetaDbServerMessaging method saveVCImage.
/**
* getVersionInfo method comment.
* @throws RemoteException
*/
public BigString saveVCImage(BigString vcImageXML) throws DataAccessException {
try {
log.print("LocalUserMetaDbServerMessaging.saveVCImage()");
BigString savedVCImageXML = dbServerProxy.saveVCImage(vcImageXML);
return savedVCImageXML;
} catch (DataAccessException e) {
log.exception(e);
throw e;
} catch (Throwable e) {
log.exception(e);
throw new DataAccessException(e.getMessage());
}
}
Aggregations