1 /**2 * Copyright (C) 20003 */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�chamboux10 */11 public interface FosAttributeControler {12 /**13 * Gives access to the FOS root directory (named dbDir).14 */15 String getDbDir();16 17 /**18 * Changes the FOS root directory.19 */20 void setDbDir(String dbdir);21 }22