use of org.vcell.util.DataAccessException in project vcell by virtualcell.
the class LocalUserMetaDbServerMessaging method groupSetPublic.
/**
* This method was created in VisualAge.
* @return void
* @param key KeyValue
* @exception DataAccessException The exception description.
* @exception java.rmi.RemoteException The exception description.
*/
public org.vcell.util.document.VersionInfo groupSetPublic(org.vcell.util.document.VersionableType vType, org.vcell.util.document.KeyValue key) throws DataAccessException, ObjectNotFoundException {
try {
log.print("LocalUserMetaDbServerMessaging.groupSetPublic(vType=" + vType.getTypeName() + ", Key=" + key + ")");
VersionInfo newVersionInfo = dbServerProxy.groupSetPublic(vType, key);
return newVersionInfo;
} catch (DataAccessException e) {
log.exception(e);
throw e;
} catch (Throwable e) {
log.exception(e);
throw new DataAccessException(e.getMessage());
}
}
use of org.vcell.util.DataAccessException in project vcell by virtualcell.
the class LocalUserMetaDbServerMessaging method deleteGeometry.
/**
* Insert the method's description here.
* Creation date: (10/22/2003 10:23:06 AM)
* @throws RemoteException
*/
public void deleteGeometry(org.vcell.util.document.KeyValue key) throws DataAccessException {
try {
log.print("LocalUserMetaDbServerMessaging.deleteGeometry(Key=" + key + ")");
dbServerProxy.deleteGeometry(key);
} catch (DataAccessException e) {
log.exception(e);
throw e;
} catch (Throwable e) {
log.exception(e);
throw new DataAccessException(e.getMessage());
}
}
use of org.vcell.util.DataAccessException 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.DataAccessException in project vcell by virtualcell.
the class LocalUserMetaDbServerMessaging method groupAddUser.
/**
* This method was created in VisualAge.
* @return void
* @param key KeyValue
* @exception DataAccessException The exception description.
* @exception java.rmi.RemoteException The exception description.
*/
public org.vcell.util.document.VersionInfo groupAddUser(org.vcell.util.document.VersionableType vType, org.vcell.util.document.KeyValue key, String addUserToGroup, boolean isHidden) throws DataAccessException, ObjectNotFoundException {
try {
log.print("LocalUserMetaDbServerMessaging.groupAddUser(vType=" + vType.getTypeName() + ", Key=" + key + ", userToAdd=" + addUserToGroup + ", isHidden=" + isHidden + ")");
VersionInfo newVersionInfo = dbServerProxy.groupAddUser(vType, key, addUserToGroup, isHidden);
return newVersionInfo;
} catch (DataAccessException e) {
log.exception(e);
throw e;
} catch (Throwable e) {
log.exception(e);
throw new DataAccessException(e.getMessage());
}
}
use of org.vcell.util.DataAccessException 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());
}
}
Aggregations