01: package com.technoetic.xplanner.file;
02:
03: // DEBT Apply the same naming convention for service locator like SystemAuthorizer
04: public class DefaultFileSystem {
05: private static FileSystem fileSystem;
06:
07: public static FileSystem get() {
08: return fileSystem;
09: }
10:
11: public static void set(FileSystem fileSystem) {
12: DefaultFileSystem.fileSystem = fileSystem;
13: }
14: }
|