/glassfish-3.1.2/cluster/admin/src/main/java/com/sun/enterprise/v3/admin/cluster/ |
H A D | CreateNodeConfigCommand.java | 85 @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 D | CreateNodeImplicitCommand.java | 82 @Param(name = "installdir") 83 String installdir; field in class:CreateNodeImplicitCommand 100 map.add(NodeUtils.PARAM_INSTALLDIR, installdir);
|
H A D | UpdateNodeConfigCommand.java | 81 @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 D | UpdateNodeCommand.java | 92 @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 D | UpdateNodeRemoteCommand.java | 83 @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 D | ValidateNodeCommand.java | 101 @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 D | CreateRemoteNodeCommand.java | 80 @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 D | InstanceRegisterInstanceCommandParameters.java | 64 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 D | Node.java | 146 @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 D | CreateLocalInstanceCommand.java | 142 //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...] |