You are viewing a plain text version of this content. The canonical link for it is here.
Posted to graffito-commits@incubator.apache.org by ta...@apache.org on 2005/02/04 19:53:10 UTC

svn commit: r151397 - incubator/graffito/trunk/api/src/java/org/apache/portals/graffito/model/FileSystemServer.java

Author: taylor
Date: Fri Feb  4 11:53:09 2005
New Revision: 151397

URL: http://svn.apache.org/viewcvs?view=rev&rev=151397
Log:
something got hosed in SVN, trying to commit again


Modified:
    incubator/graffito/trunk/api/src/java/org/apache/portals/graffito/model/FileSystemServer.java

Modified: incubator/graffito/trunk/api/src/java/org/apache/portals/graffito/model/FileSystemServer.java
URL: http://svn.apache.org/viewcvs/incubator/graffito/trunk/api/src/java/org/apache/portals/graffito/model/FileSystemServer.java?view=diff&r1=151396&r2=151397
==============================================================================
--- incubator/graffito/trunk/api/src/java/org/apache/portals/graffito/model/FileSystemServer.java (original)
+++ incubator/graffito/trunk/api/src/java/org/apache/portals/graffito/model/FileSystemServer.java Fri Feb  4 11:53:09 2005
@@ -16,19 +16,29 @@
 package org.apache.portals.graffito.model;
 
 /**
+ * File System Server
  *
- * @author <a href="mailto:christophe.lombart@sword-technologies.com">Lombart Christophe </a>
- * @version $Id: Exp $
+ * @author <a href="mailto:taylor@apache.org">David Sean Taylor</a>
+ * @version $Id: $
  */
 public interface FileSystemServer extends Server
 {
     /**
-     * @return Returns the root.
+     * Returns the root path of the file system in the format
+     * of the file system's native operating system.
+     * Examples: /home/david/share/, c:/stage/website1/
+     *   
+     * @return the root path of the file system.
      */
-    public abstract String getRoot();
-
+    String getRoot();
+    
     /**
-     * @param root The root to set.
+     * Sets the root path of the file system in the format
+     * of the file system's native operating system.
+     * Examples: /home/david/share/, c:/stage/website1/
+     *   
+     * @param root the root path of the file system.
      */
-    public abstract void setRoot(String root);
-}
\ No newline at end of file
+    void setRoot(String root);
+    
+}