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 cl...@apache.org on 2005/01/22 21:09:04 UTC

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

Author: clombart
Date: Sat Jan 22 13:09:03 2005
New Revision: 126054

URL: http://svn.apache.org/viewcvs?view=rev&rev=126054
Log:
The build failed because FileSystemServer was missing. David, can you check if this interface is correct ?
Added:
   incubator/graffito/trunk/api/src/java/org/apache/portals/graffito/model/FileSystemServer.java

Added: 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=auto&rev=126054
==============================================================================
--- (empty file)
+++ incubator/graffito/trunk/api/src/java/org/apache/portals/graffito/model/FileSystemServer.java	Sat Jan 22 13:09:03 2005
@@ -0,0 +1,34 @@
+/*
+ * Copyright 2000-2004 The Apache Software Foundation.
+ * 
+ * Licensed under the Apache License, Version 2.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.apache.org/licenses/LICENSE-2.0
+ * 
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.apache.portals.graffito.model;
+
+/**
+ *
+ * @author <a href="mailto:christophe.lombart@sword-technologies.com">Lombart Christophe </a>
+ * @version $Id: Exp $
+ */
+public interface FileSystemServer extends Server
+{
+    /**
+     * @return Returns the root.
+     */
+    public abstract String getRoot();
+
+    /**
+     * @param root The root to set.
+     */
+    public abstract void setRoot(String root);
+}
\ No newline at end of file