[Mulgara-svn] r356 - branches/nw-interface/src/jar/itql/java/org/mulgara/query/ast
pag at mulgara.org
pag at mulgara.org
Sun Aug 19 17:54:08 UTC 2007
Author: pag
Date: 2007-08-19 12:54:07 -0500 (Sun, 19 Aug 2007)
New Revision: 356
Added:
branches/nw-interface/src/jar/itql/java/org/mulgara/query/ast/Restore.java
Log:
New DataTx command for restoring backup data
Added: branches/nw-interface/src/jar/itql/java/org/mulgara/query/ast/Restore.java
===================================================================
--- branches/nw-interface/src/jar/itql/java/org/mulgara/query/ast/Restore.java 2007-08-19 17:49:54 UTC (rev 355)
+++ branches/nw-interface/src/jar/itql/java/org/mulgara/query/ast/Restore.java 2007-08-19 17:54:07 UTC (rev 356)
@@ -0,0 +1,30 @@
+/**
+ * The contents of this file are subject to the Open Software License
+ * Version 3.0 (the "License"); you may not use this file except in
+ * compliance with the License. You may obtain a copy of the License at
+ * http://www.opensource.org/licenses/osl-3.0.txt
+ *
+ * Software distributed under the License is distributed on an "AS IS"
+ * basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See
+ * the License for the specific language governing rights and limitations
+ * under the License.
+ */
+package org.mulgara.query.ast;
+
+import java.net.URI;
+
+/**
+ * Represents a command to reload backup data.
+ *
+ * @created Aug 19, 2007
+ * @author Paul Gearon
+ * @copyright © 2007 <a href="mailto:pgearon at users.sourceforge.net">Paul Gearon</a>
+ * @licence <a href="{@docRoot}/../../LICENCE.txt">Open Software License v3.0</a>
+ */
+public class Restore extends DataTx {
+
+ public Restore(URI source, URI destination) {
+ super(source, destination);
+ }
+
+}
More information about the Mulgara-svn
mailing list