[Mulgara-svn] r1632 - trunk/src/jar/server-rmi/java/org/mulgara/server/rmi
pag at mulgara.org
pag at mulgara.org
Thu Mar 26 19:49:07 UTC 2009
Author: pag
Date: 2009-03-26 12:49:06 -0700 (Thu, 26 Mar 2009)
New Revision: 1632
Modified:
trunk/src/jar/server-rmi/java/org/mulgara/server/rmi/SessionWrapperRemoteSession.java
Log:
fixed up some javadoc and renamed model to graph
Modified: trunk/src/jar/server-rmi/java/org/mulgara/server/rmi/SessionWrapperRemoteSession.java
===================================================================
--- trunk/src/jar/server-rmi/java/org/mulgara/server/rmi/SessionWrapperRemoteSession.java 2009-03-26 19:46:47 UTC (rev 1631)
+++ trunk/src/jar/server-rmi/java/org/mulgara/server/rmi/SessionWrapperRemoteSession.java 2009-03-26 19:49:06 UTC (rev 1632)
@@ -279,7 +279,6 @@
* currently empty then the current contents of the database will be replaced
* with the content of the backup file when this method returns.
*
- * @param serverURI The URI of the server to restore.
* @param sourceURI The URI of the backup file to restore from.
* @throws QueryException if the restore cannot be completed.
*/
@@ -318,9 +317,9 @@
* @throws QueryException Unable to create the new graph.
* @throws RemoteException Network error attempting to create the new graph.
*/
- public void createModel(URI modelURI, URI modelTypeURI) throws QueryException, RemoteException {
+ public void createModel(URI graphURI, URI graphTypeURI) throws QueryException, RemoteException {
try {
- session.createModel(modelURI, modelTypeURI);
+ session.createModel(graphURI, graphTypeURI);
} catch (Throwable t) {
throw convertToQueryException(t);
}
More information about the Mulgara-svn
mailing list