*/
public class JunitDummyAuthenticationProvider extends DummyAuthenticationProvider {
@Override
public String getHomeDirectory (String username) throws IOException {
VFSMount vfsroot = ((PlatformConfiguration) ConfigurationLoader.getConfiguration(PlatformConfiguration.class)).getVFSRoot();
String base = vfsroot.getPath();
File homeDir = new File (base + "/home/" + username);
return homeDir.getAbsolutePath().replace('\\', '/');
}