]> git.argeo.org Git - gpl/argeo-slc.git/blobdiff - runtime/org.argeo.slc.specs/src/main/java/org/argeo/slc/deploy/VersioningDriver.java
Update licence headers
[gpl/argeo-slc.git] / runtime / org.argeo.slc.specs / src / main / java / org / argeo / slc / deploy / VersioningDriver.java
index a48b35543cc348954d3324f72a536fc5540ed3c6..52659b7d5c1d12e1952529218abc805c75ce5732 100644 (file)
@@ -1,5 +1,5 @@
 /*\r
- * Copyright (C) 2010 Mathieu Baudier <mbaudier@argeo.org>\r
+ * Copyright (C) 2007-2012 Argeo GmbH\r
  *\r
  * Licensed under the Apache License, Version 2.0 (the "License");\r
  * you may not use this file except in compliance with the License.\r
  * See the License for the specific language governing permissions and\r
  * limitations under the License.\r
  */\r
-\r
 package org.argeo.slc.deploy;\r
 \r
 import java.io.File;\r
 import java.io.OutputStream;\r
 import java.util.List;\r
 \r
+/** Abstracts common versioning operations */\r
 public interface VersioningDriver {\r
        public void getFileFromRepository(String repositoryBaseUrl,\r
                        String location, OutputStream out);\r
@@ -34,7 +34,13 @@ public interface VersioningDriver {
 \r
        public void importFileOrDir(String repositoryUrl, File fileOrDir);\r
 \r
-       public void checkout(String repositoryUrl, File destDir, Boolean recursive);\r
+       /**\r
+        * Checks out or update this versioned directory\r
+        * \r
+        * @return true if the content has changed, false otherwise\r
+        */\r
+       public Boolean checkout(String repositoryUrl, File destDir,\r
+                       Boolean recursive);\r
 \r
        public void createRepository(String filePath);\r
 \r