Searched defs:installdir (Results 1 - 10 of 10) sorted by relevance

/glassfish-3.1.2/cluster/admin/src/main/java/com/sun/enterprise/v3/admin/cluster/
H A DCreateNodeConfigCommand.java85 @Param(name = "installdir", optional= true)
86 String installdir; field in class:CreateNodeConfigCommand
92 //validate installdir if passed and running on localhost
94 if (NetUtils.isThisHostLocal(nodehost) && StringUtils.ok(installdir)){
101 String resolvedInstallDir = resolver.resolve(installdir);
106 report.setMessage(Strings.get("invalid.installdir",installdir));
117 if (StringUtils.ok(installdir))
118 map.add(NodeUtils.PARAM_INSTALLDIR, installdir);
H A DCreateNodeImplicitCommand.java82 @Param(name = "installdir")
83 String installdir; field in class:CreateNodeImplicitCommand
100 map.add(NodeUtils.PARAM_INSTALLDIR, installdir);
H A DUpdateNodeConfigCommand.java81 @Param(name = "installdir", optional=true)
82 private String installdir; field in class:UpdateNodeConfigCommand
131 if (installdir != null) {
132 map.add(NodeUtils.PARAM_INSTALLDIR, installdir);
H A DUpdateNodeCommand.java92 @Param(name = "installdir", optional=true)
93 String installdir; field in class:UpdateNodeCommand
133 //validate installdir if passed and running on localhost
135 if (NetUtils.isThisHostLocal(nodehost) && StringUtils.ok(installdir)){
142 String resolvedInstallDir = resolver.resolve(installdir);
147 report.setMessage(Strings.get("invalid.installdir",installdir));
166 if (!allowableChange(installdir, configInstalldir)) {
167 badparam = "installdir";
207 if (installdir !
[all...]
H A DUpdateNodeRemoteCommand.java83 @Param(name = "installdir", optional=true)
84 private String installdir; field in class:UpdateNodeRemoteCommand
139 map.add(NodeUtils.PARAM_INSTALLDIR, installdir);
163 validateMap.add(NodeUtils.PARAM_INSTALLDIR, installdir);
216 if (installdir == null) {
217 installdir = node.getInstallDir();
270 if (!StringUtils.ok(installdir)) {
271 installdir = NodeUtils.NODE_DEFAULT_INSTALLDIR;
H A DValidateNodeCommand.java101 @Param(name = "installdir", optional=true)
102 private String installdir; field in class:ValidateNodeCommand
151 if (! excludeFromUpdate.contains("installdir"))
152 map.add("installdir", installdir);
190 validatePathSimple("installdir", installdir, value);
H A DCreateRemoteNodeCommand.java80 @Param(name = "installdir", optional = true, defaultValue = NodeUtils.NODE_DEFAULT_INSTALLDIR)
81 private String installdir; field in class:CreateRemoteNodeCommand
176 map.add(NodeUtils.PARAM_INSTALLDIR, installdir);
198 command.add("--installdir");
199 command.add(installdir);
240 if (!StringUtils.ok(installdir)) {
241 installdir = NodeUtils.NODE_DEFAULT_INSTALLDIR;
262 throw new IllegalArgumentException(Strings.get("create.node.ssh.no.installdir"));
/glassfish-3.1.2/admin/config-api/src/main/java/com/sun/enterprise/config/util/
H A DInstanceRegisterInstanceCommandParameters.java64 public String installdir = null; field in class:InstanceRegisterInstanceCommandParameters
94 public static final String PARAM_INSTALLDIR = "installdir";
/glassfish-3.1.2/admin/config-api/src/main/java/com/sun/enterprise/config/serverbeans/
H A DNode.java146 @Param(name = "installdir", optional = true)
225 * to the node's installdir.
352 @Param(name = "installdir", optional = true)
353 String installdir = null; field in class:Node.Decorator
411 if (!StringUtils.ok(installdir))
/glassfish-3.1.2/cluster/cli/src/main/java/com/sun/enterprise/admin/cli/cluster/
H A DCreateLocalInstanceCommand.java142 //BugDB 13431949 - If installdir is not specified on node, call _validate-node on DAS to populate installdir.
143 //If installdir is specified on node, validate installdir locally so we can take advantage of java path processing to
144 //normalize the installdir from the node.
145 //If installdir has tokens, call _validate-node on DAS to have DAS resolve the tokens
404 /* installdir is product install dir (parent of glassfish install root) */
405 private int createNodeImplicit(String name, String installdir, String nodeHost) throws CommandException { argument
416 if (installdir != null) {
417 argsList.add("--installdir");
430 validateNode(String name, String installdir, String nodeHost) argument
[all...]

Completed in 20 milliseconds