KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > objectweb > perseus > fos > api > FosAttributeControler


1 /**
2  * Copyright (C) 2000
3  */

4
5 package org.objectweb.perseus.fos.api;
6
7 /**
8  * Defines the attributes that can be controled for a FOS manager.
9  * @author S. Chassande-Barrioz, P. D�chamboux
10  */

11 public interface FosAttributeControler {
12     /**
13      * Gives access to the FOS root directory (named dbDir).
14      */

15     String JavaDoc getDbDir();
16
17     /**
18      * Changes the FOS root directory.
19      */

20     void setDbDir(String JavaDoc dbdir);
21 }
22
Popular Tags