Searched defs:installation (Results 1 - 25 of 42) sorted by relevance

12

/forgerock/opendj2/src/quicksetup/org/opends/quicksetup/
H A DStatus.java38 * This class represents the current state of a particular installation.
42 private Installation installation; field in class:Status
45 * Creates a status instance of the installation indicated by the
47 * @param installation physical installation
49 public Status(Installation installation) { argument
50 this.installation = installation;
77 Utils.getPath(new File(installation.getLocksDirectory(),
H A DBuildInformation.java61 * Reads build information for a particular installation by reading the
63 * @param installation from which to gather build information
68 static public BuildInformation create(Installation installation) argument
73 Utils.getPath(installation.getServerStartCommandFile())));
/forgerock/opendj-b2.6/src/quicksetup/org/opends/quicksetup/
H A DStatus.java39 * This class represents the current state of a particular installation.
43 private Installation installation; field in class:Status
46 * Creates a status instance of the installation indicated by the
48 * @param installation physical installation
50 public Status(Installation installation) { argument
51 this.installation = installation;
78 Utils.getPath(new File(installation.getLocksDirectory(),
H A DBuildInformation.java62 * Reads build information for a particular installation by reading the
64 * @param installation from which to gather build information
69 static public BuildInformation create(Installation installation) argument
74 Utils.getPath(installation.getServerStartCommandFile())));
/forgerock/opendj2.6.2/src/quicksetup/org/opends/quicksetup/
H A DStatus.java39 * This class represents the current state of a particular installation.
43 private Installation installation; field in class:Status
46 * Creates a status instance of the installation indicated by the
48 * @param installation physical installation
50 public Status(Installation installation) { argument
51 this.installation = installation;
78 Utils.getPath(new File(installation.getLocksDirectory(),
H A DBuildInformation.java62 * Reads build information for a particular installation by reading the
64 * @param installation from which to gather build information
69 static public BuildInformation create(Installation installation) argument
74 Utils.getPath(installation.getServerStartCommandFile())));
/forgerock/opendj2-hg/src/quicksetup/org/opends/quicksetup/
H A DStatus.java38 * This class represents the current state of a particular installation.
42 private Installation installation; field in class:Status
45 * Creates a status instance of the installation indicated by the
47 * @param installation physical installation
49 public Status(Installation installation) { argument
50 this.installation = installation;
77 Utils.getPath(new File(installation.getLocksDirectory(),
H A DBuildInformation.java61 * Reads build information for a particular installation by reading the
63 * @param installation from which to gather build information
68 static public BuildInformation create(Installation installation) argument
73 Utils.getPath(installation.getServerStartCommandFile())));
/forgerock/opendj2-jel-hg/src/quicksetup/org/opends/quicksetup/
H A DStatus.java39 * This class represents the current state of a particular installation.
43 private Installation installation; field in class:Status
46 * Creates a status instance of the installation indicated by the
48 * @param installation physical installation
50 public Status(Installation installation) { argument
51 this.installation = installation;
78 Utils.getPath(new File(installation.getLocksDirectory(),
H A DBuildInformation.java66 * Reads build information for a particular installation by reading the
68 * @param installation from which to gather build information
73 static public BuildInformation create(Installation installation) argument
78 installation.getServerStartCommandFile().toString()));
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/quicksetup/
H A DStatus.java38 * This class represents the current state of a particular installation.
42 private Installation installation; field in class:Status
45 * Creates a status instance of the installation indicated by the
47 * @param installation physical installation
49 public Status(Installation installation) { argument
50 this.installation = installation;
77 Utils.getPath(new File(installation.getLocksDirectory(),
H A DBuildInformation.java57 * Reads build information for a particular installation by reading the
59 * @param installation from which to gather build information
64 public static BuildInformation create(Installation installation) argument
69 Utils.getPath(installation.getServerStartCommandFile())));
/forgerock/opendj-b2.6/src/guitools/org/opends/guitools/uninstaller/
H A DUninstallData.java58 * @param installation the object describing the installation.
60 * installation configuration.
62 public UninstallData(Installation installation) throws IOException argument
64 isServerRunning = installation.getStatus().isServerRunning();
65 Configuration conf = new Configuration(installation,
66 installation.getCurrentConfigurationFile());
/forgerock/opendj2/src/guitools/org/opends/guitools/uninstaller/
H A DUninstallData.java57 * @param installation the object describing the installation.
59 * installation configuration.
61 public UninstallData(Installation installation) throws IOException argument
63 isServerRunning = installation.getStatus().isServerRunning();
64 Configuration conf = new Configuration(installation,
65 installation.getCurrentConfigurationFile());
/forgerock/opendj2.6.2/src/guitools/org/opends/guitools/uninstaller/
H A DUninstallData.java58 * @param installation the object describing the installation.
60 * installation configuration.
62 public UninstallData(Installation installation) throws IOException argument
64 isServerRunning = installation.getStatus().isServerRunning();
65 Configuration conf = new Configuration(installation,
66 installation.getCurrentConfigurationFile());
/forgerock/opendj2-hg/src/guitools/org/opends/guitools/uninstaller/
H A DUninstallData.java57 * @param installation the object describing the installation.
59 * installation configuration.
61 public UninstallData(Installation installation) throws IOException argument
63 isServerRunning = installation.getStatus().isServerRunning();
64 Configuration conf = new Configuration(installation,
65 installation.getCurrentConfigurationFile());
/forgerock/opendj2-jel-hg/src/guitools/org/opends/guitools/uninstaller/
H A DUninstallData.java58 * @param installation the object describing the installation.
60 * installation configuration.
62 public UninstallData(Installation installation) throws IOException argument
64 isServerRunning = installation.getStatus().isServerRunning();
65 Configuration conf = new Configuration(installation,
66 installation.getCurrentConfigurationFile());
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/guitools/uninstaller/
H A DUninstallData.java57 * @param installation the object describing the installation.
59 * installation configuration.
61 public UninstallData(Installation installation) throws IOException argument
63 isServerRunning = installation.getStatus().isServerRunning();
64 Configuration conf = new Configuration(installation,
65 installation.getCurrentConfigurationFile());
/forgerock/opendj2/src/quicksetup/org/opends/quicksetup/util/
H A DServerController.java63 private Installation installation; field in class:ServerController
67 * installation.
76 * installation.
77 * @param installation representing the server instance to control
79 public ServerController(Installation installation) { argument
80 this(null, installation);
84 * Creates a new instance that will operate on <code>installation</code>
87 * @param installation representing the server instance to control
89 public ServerController(Application application, Installation installation) { argument
90 if (installation
[all...]
/forgerock/opendj-b2.6/src/quicksetup/org/opends/quicksetup/util/
H A DServerController.java64 private Installation installation; field in class:ServerController
68 * installation.
77 * installation.
78 * @param installation representing the server instance to control
80 public ServerController(Installation installation) { argument
81 this(null, installation);
85 * Creates a new instance that will operate on <code>installation</code>
88 * @param installation representing the server instance to control
90 public ServerController(Application application, Installation installation) { argument
91 if (installation
[all...]
/forgerock/opendj2.6.2/src/quicksetup/org/opends/quicksetup/util/
H A DServerController.java64 private Installation installation; field in class:ServerController
68 * installation.
77 * installation.
78 * @param installation representing the server instance to control
80 public ServerController(Installation installation) { argument
81 this(null, installation);
85 * Creates a new instance that will operate on <code>installation</code>
88 * @param installation representing the server instance to control
90 public ServerController(Application application, Installation installation) { argument
91 if (installation
[all...]
/forgerock/opendj2-hg/src/quicksetup/org/opends/quicksetup/util/
H A DServerController.java63 private Installation installation; field in class:ServerController
67 * installation.
76 * installation.
77 * @param installation representing the server instance to control
79 public ServerController(Installation installation) { argument
80 this(null, installation);
84 * Creates a new instance that will operate on <code>installation</code>
87 * @param installation representing the server instance to control
89 public ServerController(Application application, Installation installation) { argument
90 if (installation
[all...]
/forgerock/opendj2-jel-hg/src/quicksetup/org/opends/quicksetup/util/
H A DServerController.java68 private Installation installation; field in class:ServerController
72 * installation.
81 * installation.
82 * @param installation representing the server instance to control
84 public ServerController(Installation installation) { argument
85 this(null, installation);
89 * Creates a new instance that will operate on <code>installation</code>
92 * @param installation representing the server instance to control
94 public ServerController(Application application, Installation installation) { argument
95 if (installation
[all...]
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/quicksetup/util/
H A DServerController.java64 private Installation installation; field in class:ServerController
68 * installation.
77 * installation.
78 * @param installation representing the server instance to control
80 public ServerController(Installation installation) { argument
81 this(null, installation);
85 * Creates a new instance that will operate on <code>installation</code>
88 * @param installation representing the server instance to control
90 public ServerController(Application application, Installation installation) { argument
91 if (installation
[all...]
/forgerock/opendj-b2.6/tests/unit-tests-testng/src/server/org/opends/quicksetup/
H A DInstallationTest.java42 Installation installation; field in class:InstallationTest
46 installation = TestUtilities.getInstallation();
50 * Tests to make sure installation is valid.
58 * Tests that installation root directory is available.
62 assertNotNull(installation.getRootDirectory());
66 * Tests that the installation root directory can be set.
70 File root = installation.getRootDirectory();
71 installation.setRootDirectory(root);
75 * Tests that the installation root is valid.
79 assertTrue(installation
[all...]

Completed in 167 milliseconds

12