Returns the runtime basic-storage directory path name, creating one if necessary. @return @throws IOException
()
| 25 | * @throws IOException |
| 26 | */ |
| 27 | public static String getRuntimeDir() throws IOException { |
| 28 | return Utils.locateOrCreateDirectory(getGlobalValue(ConfigConstant.FIELD_RUNTIME_DIR)); |
| 29 | } |
| 30 | |
| 31 | public static String getBasicPersistenceDir() throws IOException { |
| 32 | return String.format("%s/%s", getRuntimeDir(), getGlobalValue(ConfigConstant.FIELD_BASIC_PERSISTENCE_DIRECTORY)); |
no test coverage detected