/glassfish-3.1.2/cluster/admin/src/main/java/com/sun/enterprise/v3/admin/cluster/ |
H A D | CreateNodeSshCommand.java | 74 @Param(name = "sshkeypassphrase", optional = true, password = true) 75 private String sshkeypassphrase; field in class:CreateNodeSshCommand 126 pmap.add(NodeUtils.PARAM_SSHKEYPASSPHRASE, sshkeypassphrase); 155 if (sshkeypassphrase != null) { 156 list.add("AS_ADMIN_SSHKEYPASSPHRASE=" + nodeUtils.sshL.expandPasswordAlias(sshkeypassphrase));
|
H A D | DeleteNodeSshCommand.java | 76 if (sshkeypassphrase != null) { 77 list.add("AS_ADMIN_SSHKEYPASSPHRASE=" + nodeUtils.sshL.expandPasswordAlias(sshkeypassphrase));
|
H A D | SetupSshCommand.java | 74 @Param(name = "sshkeypassphrase", optional = true, password = true) 75 private String sshkeypassphrase; field in class:SetupSshCommand 120 sshkeypassphrase = getSSHPassphrase(); 131 sshkeypassphrase = getSSHPassphrase(); 161 sshL.init(user, node, port, realPass, sshkeyfile, sshkeypassphrase, logger); 209 if (sshkeypassphrase != null && !sshkeypassphrase.isEmpty()) { 210 key = sshL.expandPasswordAlias(sshkeypassphrase);
|
H A D | UpdateNodeRemoteCommand.java | 95 protected String sshkeypassphrase;
field in class:UpdateNodeRemoteCommand 146 map.add(NodeUtils.PARAM_SSHKEYPASSPHRASE, sshkeypassphrase);
170 validateMap.add(NodeUtils.PARAM_SSHKEYPASSPHRASE, sshkeypassphrase);
258 if (sshkeypassphrase == null) {
259 sshkeypassphrase = ssha.getPassword();
|
H A D | UpdateNodeCommand.java | 110 @Param(name = "sshkeypassphrase", optional = true, password=true) 111 String sshkeypassphrase; field in class:UpdateNodeCommand 223 if (sshuser != null || sshkeyfile != null || sshpassword != null || sshkeypassphrase != null ) { 236 if(sshkeypassphrase != null) 237 sshA.setKeyPassphrase(sshkeypassphrase);
|
H A D | UpdateNodeSshCommand.java | 67 @Param(name = "sshkeypassphrase", optional = true, password = true) 81 sshkeypassphrase = sshkeypassphraseInSubClass;
|
H A D | DeleteNodeRemoteCommand.java | 85 protected String sshkeypassphrase = null;
field in class:DeleteNodeRemoteCommand 165 sshkeypassphrase = map.getOne(NodeUtils.PARAM_SSHKEYPASSPHRASE);
|
H A D | NodeUtils.java | 96 static final String PARAM_SSHKEYPASSPHRASE = "sshkeypassphrase"; 479 String sshkeypassphrase = map.getOne(PARAM_SSHKEYPASSPHRASE); 491 // sshpassword and sshkeypassphrase may be password alias. 500 sshkeypassphrase,
|
/glassfish-3.1.2/cluster/cli/src/main/java/com/sun/enterprise/admin/cli/cluster/ |
H A D | UninstallNodeSshCommand.java | 105 sshkeypassphrase = getSSHPassphrase(true); 116 sshLauncher.init(getRemoteUser(), host, getRemotePort(), sshpassword, sshkeyfile, sshkeypassphrase, logger); 126 sshLauncher.init(getRemoteUser(), host, getRemotePort(), sshpassword, sshkeyfile, sshkeypassphrase, logger);
|
H A D | SetupSshKey.java | 102 sshkeypassphrase = getSSHPassphrase(false); 109 sshkeypassphrase = getSSHPassphrase(false); 129 sshL.init(getRemoteUser(), node, getRemotePort(), sshpassword, sshkeyfile, sshkeypassphrase, logger);
|
H A D | InstallNodeSshCommand.java | 110 sshkeypassphrase = getSSHPassphrase(true); 140 sshLauncher.init(getRemoteUser(), host, getRemotePort(), sshpassword, getSshKeyFile(), sshkeypassphrase, logger); 155 sshLauncher.init(getRemoteUser(), host, getRemotePort(), sshpass, getSshKeyFile(), sshkeypassphrase, logger); 335 sshLauncher.init(getRemoteUser(), host, getRemotePort(), sshpassword, getSshKeyFile(), sshkeypassphrase, logger); 346 sshLauncher.init(getRemoteUser(), host, getRemotePort(), sshpass, getSshKeyFile(), sshkeypassphrase, logger);
|
H A D | NativeRemoteCommandsBase.java | 89 String sshkeypassphrase = null; field in class:NativeRemoteCommandsBase 410 sshkeypassphrase = expandedPassword; 412 sshL.init(getRemoteUser(), hosts[0], getRemotePort(), sshpassword, getSshKeyFile(), sshkeypassphrase, logger);
|
/glassfish-3.1.2/cluster/admin/src/main/java/com/sun/enterprise/v3/admin/cluster/dcom/ |
H A D | UpdateNodeDcomCommand.java | 97 sshkeypassphrase = null;
|
/glassfish-3.1.2/admin/config-api/src/main/java/com/sun/enterprise/config/serverbeans/ |
H A D | Node.java | 366 @Param(name = "sshkeypassphrase", optional = true) 367 String sshkeypassphrase; field in class:Node.Decorator 433 if (StringUtils.ok(sshkeypassphrase)) 434 sshA.setKeyPassphrase(sshkeypassphrase);
|