[Mulgara-svn] r353 - branches/nw-interface/src/jar/itql/java/org/mulgara/query/ast

pag at mulgara.org pag at mulgara.org
Sun Aug 19 17:48:40 UTC 2007


Author: pag
Date: 2007-08-19 12:48:39 -0500 (Sun, 19 Aug 2007)
New Revision: 353

Added:
   branches/nw-interface/src/jar/itql/java/org/mulgara/query/ast/Backup.java
Log:
Indicates a backup command

Added: branches/nw-interface/src/jar/itql/java/org/mulgara/query/ast/Backup.java
===================================================================
--- branches/nw-interface/src/jar/itql/java/org/mulgara/query/ast/Backup.java	2007-08-19 17:45:56 UTC (rev 352)
+++ branches/nw-interface/src/jar/itql/java/org/mulgara/query/ast/Backup.java	2007-08-19 17:48:39 UTC (rev 353)
@@ -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 back data up from a model.
+ *
+ * @created Aug 19, 2007
+ * @author Paul Gearon
+ * @copyright &copy; 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 Backup extends DataTx {
+
+  public Backup(URI source, URI destination) {
+    super(source, destination);
+  }
+
+}




More information about the Mulgara-svn mailing list