| /forgerock/openidm-v4/openidm-maintenance/src/main/java/org/forgerock/openidm/maintenance/upgrade/ |
| H A D | UpdateManager.java | 31 * @param installDir the base directory where OpenIDM is installed 35 JsonValue report(final Path archiveFile, final Path installDir) throws UpdateException; argument 41 * @param installDir the base directory where OpenIDM is installed 46 JsonValue diff(final Path archiveFile, final Path installDir, final String filename) throws UpdateException; argument 52 * @param installDir the base directory where OpenIDM is installed 57 JsonValue upgrade(final Path archiveFile, final Path installDir, final String userName) throws UpdateException; argument
|
| H A D | UpdateManagerImpl.java | 301 * Invoke an {@link UpgradeAction} using an archive at a given URL. Use {@code installDir} as the location 305 * @param installDir the {@link Path} of the currently-installed OpenIDM 311 private <R> R usingArchive(final Path archiveFile, final Path installDir, final UpgradeAction<R> upgradeAction) argument 320 final ChecksumFile checksumFile = new ChecksumFile(installDir.resolve(CHECKSUMS_FILE)); 378 public JsonValue report(final Path archiveFile, final Path installDir) argument 381 return usingArchive(archiveFile, installDir, 409 public JsonValue diff(final Path archiveFile, final Path installDir, final String filename) throws UpdateException { argument 411 return usingArchive(archiveFile, installDir, 435 final List<String> currentFileLines = withInputStreamForPath(installDir.resolve(file), inputStreamToLines); 458 public JsonValue upgrade(final Path archiveFile, final Path installDir, fina argument 601 UpdateThread(UpdateLogEntry updateEntry, Archive archive, FileStateChecker fileStateChecker, Path installDir, Properties updateProperties, Path tempDirectory) argument [all...] |
| /forgerock/opendj-b2.6/src/server/org/opends/server/util/ |
| H A D | RuntimeInformation.java | 127 String installDir = DirectoryServer.getServerRoot(); 130 installDir = new File(installDir).getCanonicalPath(); 133 if (installDir == null) 139 System.out.println(NOTE_INSTALL_DIRECTORY.get(installDir)); 266 String installDir = DirectoryServer.getServerRoot(); 269 installDir = new File(installDir).getCanonicalPath(); 272 if (installDir == null) 278 logError(NOTE_INSTALL_DIRECTORY.get(installDir)); [all...] |
| /forgerock/opendj2.6.2/src/server/org/opends/server/util/ |
| H A D | RuntimeInformation.java | 127 String installDir = DirectoryServer.getServerRoot(); 130 installDir = new File(installDir).getCanonicalPath(); 133 if (installDir == null) 139 System.out.println(NOTE_INSTALL_DIRECTORY.get(installDir)); 266 String installDir = DirectoryServer.getServerRoot(); 269 installDir = new File(installDir).getCanonicalPath(); 272 if (installDir == null) 278 logError(NOTE_INSTALL_DIRECTORY.get(installDir)); [all...] |
| /forgerock/opendj2-jel-hg/src/server/org/opends/server/util/ |
| H A D | RuntimeInformation.java | 129 String installDir = DirectoryServer.getServerRoot(); 132 installDir = new File(installDir).getCanonicalPath(); 135 if (installDir == null) 141 System.out.println(NOTE_INSTALL_DIRECTORY.get(installDir)); 279 String installDir = DirectoryServer.getServerRoot(); 282 installDir = new File(installDir).getCanonicalPath(); 285 if (installDir == null) 291 logError(NOTE_INSTALL_DIRECTORY.get(installDir)); [all...] |
| /forgerock/openidm-v4/openidm-patch-base/src/main/java/org/forgerock/openidm/patch/ |
| H A D | Patch.java | 37 * @param installDir The target directory against which the patch is to be applied 41 File installDir, Map<String, Object> params); 40 initialize(URL patchUrl, String originalUrlString, File workingDir, File installDir, Map<String, Object> params) argument
|
| H A D | Main.java | 68 String installDir = args[0]; 71 String workingDir = optionValueStr(params, "w", installDir); 73 File i = new File(installDir); 92 * @param installDir The target directory against which the patch is to be applied 98 File installDir, Map<String, Object> params) throws IOException { 121 archive.initialize(installDir, new File(workingDir, PATCH_ARCHIVE_DIR), 133 patch.initialize(patchUrl, originalUrlString, workingDir, installDir, params); 136 historyLogger.log(Level.INFO, "Target: {0}, Source: {1}", new Object[]{installDir, patchUrl}); 181 private static void storePatchBundle(File workingDir, File installDir, argument 97 execute(URL patchUrl, String originalUrlString, File workingDir, File installDir, Map<String, Object> params) argument
|
| H A D | Archive.java | 46 private File installDir = null; field in class:Archive 65 * @param installDir The target directory against which the patch is to be applied. 68 * @throws FileNotFoundException If the installDir or workingDir do not exist. 71 public void initialize(File installDir, File workingDir, String archiveName) argument 79 this.installDir = installDir; 100 String relativePath = FileUtil.constructRelativePath(installDir, file);
|
| /forgerock/opendj2/src/server/org/opends/server/util/ |
| H A D | RuntimeInformation.java | 128 String installDir = toCanonicalPath(DirectoryServer.getServerRoot()); 129 if (installDir == null) 135 System.out.println(NOTE_INSTALL_DIRECTORY.get(installDir)); 262 String installDir = toCanonicalPath(DirectoryServer.getServerRoot()); 263 if (installDir == null) 269 logError(NOTE_INSTALL_DIRECTORY.get(installDir));
|
| /forgerock/opendj2-hg/src/server/org/opends/server/util/ |
| H A D | RuntimeInformation.java | 128 String installDir = toCanonicalPath(DirectoryServer.getServerRoot()); 129 if (installDir == null) 135 System.out.println(NOTE_INSTALL_DIRECTORY.get(installDir)); 262 String installDir = toCanonicalPath(DirectoryServer.getServerRoot()); 263 if (installDir == null) 269 logError(NOTE_INSTALL_DIRECTORY.get(installDir));
|
| /forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/util/ |
| H A D | RuntimeInformation.java | 127 String installDir = toCanonicalPath(DirectoryServer.getServerRoot()); 128 if (installDir == null) 134 System.out.println(NOTE_INSTALL_DIRECTORY.get(installDir)); 267 String installDir = toCanonicalPath(DirectoryServer.getServerRoot()); 268 if (installDir == null) 274 logger.info(NOTE_INSTALL_DIRECTORY, installDir);
|
| /forgerock/openidm-v4/openidm-patch-base/src/main/java/org/forgerock/openidm/patch/utils/ |
| H A D | PatchUtil.java | 67 * @param installDir the directory containing the files to replace 70 public void replaceStaticFiles(URL patchUrl, File installDir) throws IOException { argument 71 zipUtil.extractFolder(patchUrl, Archive.STATIC_FILES_ENTRY, installDir);
|
| /forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/quicksetup/util/ |
| H A D | Utils.java | 1973 private static String installDir; field in class:Utils 1982 if (installDir == null) 1985 installDir = getCanonicalPath(f); 1986 if (installDir.lastIndexOf(File.separatorChar) != installDir.length() - 1) 1988 installDir += File.separatorChar; 1992 return installDir;
|
| /forgerock/opendj2/src/quicksetup/org/opends/quicksetup/ui/ |
| H A D | QuickSetup.java | 399 String installDir = application.getUserData().getServerLocation(); 401 new Installation(installDir, installDir);
|
| /forgerock/opendj-b2.6/src/quicksetup/org/opends/quicksetup/ui/ |
| H A D | QuickSetup.java | 399 String installDir = application.getUserData().getServerLocation(); 401 new Installation(installDir, installDir);
|
| /forgerock/opendj2.6.2/src/quicksetup/org/opends/quicksetup/ui/ |
| H A D | QuickSetup.java | 399 String installDir = application.getUserData().getServerLocation(); 401 new Installation(installDir, installDir);
|
| /forgerock/opendj2-hg/src/quicksetup/org/opends/quicksetup/ui/ |
| H A D | QuickSetup.java | 399 String installDir = application.getUserData().getServerLocation(); 401 new Installation(installDir, installDir);
|
| /forgerock/opendj2-jel-hg/src/quicksetup/org/opends/quicksetup/ui/ |
| H A D | QuickSetup.java | 403 String installDir = application.getUserData().getServerLocation(); 405 new Installation(installDir, installDir);
|
| /forgerock/opendj2/src/quicksetup/org/opends/quicksetup/installer/ |
| H A D | Installer.java | 838 String installDir = getUserData().getServerLocation(); 839 setInstallation(new Installation(installDir, installDir));
|
| /forgerock/opendj-b2.6/src/quicksetup/org/opends/quicksetup/installer/ |
| H A D | Installer.java | 894 String installDir = getUserData().getServerLocation(); 895 setInstallation(new Installation(installDir, installDir));
|
| /forgerock/opendj2.6.2/src/quicksetup/org/opends/quicksetup/installer/ |
| H A D | Installer.java | 894 String installDir = getUserData().getServerLocation(); 895 setInstallation(new Installation(installDir, installDir));
|
| /forgerock/opendj2-hg/src/quicksetup/org/opends/quicksetup/installer/ |
| H A D | Installer.java | 838 String installDir = getUserData().getServerLocation(); 839 setInstallation(new Installation(installDir, installDir));
|
| /forgerock/opendj2-jel-hg/src/quicksetup/org/opends/quicksetup/installer/ |
| H A D | Installer.java | 948 String installDir = getUserData().getServerLocation(); 949 setInstallation(new Installation(installDir, installDir));
|
| /forgerock/opendj2/ext/ant/lib/ |
| H A D | jdeb-0.10.jar | META-INF/ META-INF/MANIFEST.MF META-INF/maven/ META-INF/maven/plugin. ... |
| /forgerock/opendj-b2.6/ext/ant/lib/ |
| H A D | jdeb-0.10.jar | META-INF/ META-INF/MANIFEST.MF META-INF/maven/ META-INF/maven/plugin. ... |