Searched defs:installRoot (Results 1 - 3 of 3) sorted by relevance

/forgerock/opendj2-jel-hg/src/server/org/opends/server/types/
H A DDirectoryEnvironmentConfig.java93 private File installRoot; field in class:DirectoryEnvironmentConfig
203 installRoot = null;
238 if (installRoot != null) {
239 return installRoot;
257 installRoot = new File(path).getParentFile().getParentFile();
259 installRoot = new File(System.getProperty("user.dir"));
262 installRoot = new File(path);
265 File f = installRoot.getCanonicalFile();
266 installRoot = f;
270 installRoot
[all...]
/forgerock/openam-v13/openam-core/src/main/java/org/forgerock/openam/upgrade/
H A DOpenDJUpgrader.java105 private final String installRoot; field in class:OpenDJUpgrader
115 * @param installRoot
119 public OpenDJUpgrader(final String installRoot, final ServletContext servletCtx) { argument
120 this.installRoot = installRoot;
122 this.upgradeMarker = new File(installRoot + "/.upgrade_marker");
138 return readVersionFromFile(new File(installRoot, "config/buildinfo"));
202 File badSchema = new File(installRoot + File.separator + "config"
214 File moveTo = new File(installRoot+ File.separator + "config"+ File.separator +
265 "--configFile", installRoot
[all...]
/forgerock/openam/openam-core/src/main/java/org/forgerock/openam/upgrade/
H A DOpenDJUpgrader.java104 private final String installRoot; field in class:OpenDJUpgrader
115 * @param installRoot The installation root of the embedded OpenDS instance, which is
119 public OpenDJUpgrader(EmbeddedOpenDJBackupManager backupManager, String installRoot, ServletContext servletCtx) { argument
121 this.installRoot = installRoot;
123 this.upgradeMarker = new File(installRoot + "/.upgrade_marker");
139 return readVersionFromFile(new File(installRoot, "config/buildinfo"));
204 File badSchema = new File(installRoot + File.separator + "config"
216 File moveTo = new File(installRoot+ File.separator + "config"+ File.separator +
266 "--configFile", installRoot
[all...]

Completed in 120 milliseconds