KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > hudson > model > PersistenceRoot


1 package hudson.model;
2
3 import java.io.File JavaDoc;
4
5 /**
6  * Root object of a persisted object tree
7  * that gets its own file system directory.
8  *
9  * @author Kohsuke Kawaguchi
10  */

11 public interface PersistenceRoot {
12     /**
13      * Gets the root directory on the file system that this
14      * {@link Item} can use freely fore storing the configuration data.
15      *
16      * <p>
17      * This parameter is given by the {@link ItemGroup} when
18      * {@link Item} is loaded from memory.
19      */

20     File JavaDoc getRootDir();
21 }
22
Popular Tags