View Javadoc
1   package net.sf.maia.web;
2   
3   /***
4    *
5    *
6    * @author Magnus Grimsell
7    */
8   public class Configuration
9   {
10      public static String getMaiaDir()
11      {
12          return System.getProperty("user.home") + "/.maia";
13      }
14  
15      public static String getMaiaStorageDir()
16      {
17          return getMaiaDir() + "/store";
18      }
19      
20      public static String getMaiaRepositoryConfigFile()
21      {
22          return getMaiaDir() + "/repository.xml";
23      }
24  }