Searched refs:trustStorePasswordArg (Results 1 - 18 of 18) sorted by relevance

/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/admin/client/cli/
H A DSecureConnectionCliArgs.java97 public StringArgument trustStorePasswordArg; field in class:SecureConnectionCliArgs
274 trustStorePasswordArg = CommonArguments.getTrustStorePassword();
275 argList.add(trustStorePasswordArg);
344 addIfArgsAreConflicting(errors, trustAllArg, trustStorePasswordArg);
347 addIfArgsAreConflicting(errors, trustStorePasswordArg, trustStorePasswordFileArg);
437 if (trustStorePasswordArg.isPresent())
439 trustStorePasswordStringValue = trustStorePasswordArg.getValue();
/forgerock/opendj2/src/server/org/opends/server/admin/client/cli/
H A DSecureConnectionCliArgs.java133 public StringArgument trustStorePasswordArg = null; field in class:SecureConnectionCliArgs
548 trustStorePasswordArg = new StringArgument("trustStorePassword",
552 trustStorePasswordArg.setPropertyName(OPTION_LONG_TRUSTSTORE_PWD);
553 argList.add(trustStorePasswordArg);
665 if (trustAllArg.isPresent() && trustStorePasswordArg.isPresent()) {
668 trustStorePasswordArg.getLongIdentifier());
678 // Couldn't have at the same time trustStorePasswordArg and
680 if (trustStorePasswordArg.isPresent()
683 trustStorePasswordArg.getLongIdentifier(),
824 if (trustStorePasswordArg
[all...]
/forgerock/opendj-b2.6/src/server/org/opends/server/admin/client/cli/
H A DSecureConnectionCliArgs.java134 public StringArgument trustStorePasswordArg = null; field in class:SecureConnectionCliArgs
549 trustStorePasswordArg = new StringArgument("trustStorePassword",
553 trustStorePasswordArg.setPropertyName(OPTION_LONG_TRUSTSTORE_PWD);
554 argList.add(trustStorePasswordArg);
666 if (trustAllArg.isPresent() && trustStorePasswordArg.isPresent()) {
669 trustStorePasswordArg.getLongIdentifier());
679 // Couldn't have at the same time trustStorePasswordArg and
681 if (trustStorePasswordArg.isPresent()
684 trustStorePasswordArg.getLongIdentifier(),
825 if (trustStorePasswordArg
[all...]
/forgerock/opendj2.6.2/src/server/org/opends/server/admin/client/cli/
H A DSecureConnectionCliArgs.java134 public StringArgument trustStorePasswordArg = null; field in class:SecureConnectionCliArgs
549 trustStorePasswordArg = new StringArgument("trustStorePassword",
553 trustStorePasswordArg.setPropertyName(OPTION_LONG_TRUSTSTORE_PWD);
554 argList.add(trustStorePasswordArg);
666 if (trustAllArg.isPresent() && trustStorePasswordArg.isPresent()) {
669 trustStorePasswordArg.getLongIdentifier());
679 // Couldn't have at the same time trustStorePasswordArg and
681 if (trustStorePasswordArg.isPresent()
684 trustStorePasswordArg.getLongIdentifier(),
825 if (trustStorePasswordArg
[all...]
/forgerock/opendj2-hg/src/server/org/opends/server/admin/client/cli/
H A DSecureConnectionCliArgs.java133 public StringArgument trustStorePasswordArg = null; field in class:SecureConnectionCliArgs
548 trustStorePasswordArg = new StringArgument("trustStorePassword",
552 trustStorePasswordArg.setPropertyName(OPTION_LONG_TRUSTSTORE_PWD);
553 argList.add(trustStorePasswordArg);
665 if (trustAllArg.isPresent() && trustStorePasswordArg.isPresent()) {
668 trustStorePasswordArg.getLongIdentifier());
678 // Couldn't have at the same time trustStorePasswordArg and
680 if (trustStorePasswordArg.isPresent()
683 trustStorePasswordArg.getLongIdentifier(),
824 if (trustStorePasswordArg
[all...]
/forgerock/opendj2-jel-hg/src/server/org/opends/server/admin/client/cli/
H A DSecureConnectionCliArgs.java134 public StringArgument trustStorePasswordArg = null; field in class:SecureConnectionCliArgs
549 trustStorePasswordArg = new StringArgument("trustStorePassword",
553 trustStorePasswordArg.setPropertyName(OPTION_LONG_TRUSTSTORE_PWD);
554 argList.add(trustStorePasswordArg);
666 if (trustAllArg.isPresent() && trustStorePasswordArg.isPresent()) {
669 trustStorePasswordArg.getLongIdentifier());
679 // Couldn't have at the same time trustStorePasswordArg and
681 if (trustStorePasswordArg.isPresent()
684 trustStorePasswordArg.getLongIdentifier(),
825 if (trustStorePasswordArg
[all...]
/forgerock/opendj-b2.6/src/server/org/opends/server/util/args/
H A DLDAPConnectionArgumentParser.java215 if (args.trustStorePasswordArg.isPresent() &&
219 args.trustStorePasswordArg.getLongIdentifier(),
277 args.trustStorePasswordArg.getValue());
/forgerock/opendj2/src/server/org/opends/server/util/args/
H A DLDAPConnectionArgumentParser.java214 if (args.trustStorePasswordArg.isPresent() &&
218 args.trustStorePasswordArg.getLongIdentifier(),
276 args.trustStorePasswordArg.getValue());
/forgerock/opendj2.6.2/src/server/org/opends/server/util/args/
H A DLDAPConnectionArgumentParser.java215 if (args.trustStorePasswordArg.isPresent() &&
219 args.trustStorePasswordArg.getLongIdentifier(),
277 args.trustStorePasswordArg.getValue());
/forgerock/opendj2-jel-hg/src/server/org/opends/server/util/args/
H A DLDAPConnectionArgumentParser.java215 if (args.trustStorePasswordArg.isPresent() &&
219 args.trustStorePasswordArg.getLongIdentifier(),
277 args.trustStorePasswordArg.getValue());
/forgerock/opendj2-hg/src/server/org/opends/server/util/args/
H A DLDAPConnectionArgumentParser.java214 if (args.trustStorePasswordArg.isPresent() &&
218 args.trustStorePasswordArg.getLongIdentifier(),
276 args.trustStorePasswordArg.getValue());
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/util/args/
H A DLDAPConnectionArgumentParser.java170 if (args.trustStorePasswordArg.isPresent() && args.trustStorePasswordFileArg.isPresent())
173 args.trustStorePasswordArg.getLongIdentifier(), args.trustStorePasswordFileArg.getLongIdentifier()));
220 args.trustStorePasswordArg.getValue());
/forgerock/opendj-b2.6/src/server/org/opends/server/util/cli/
H A DLDAPConnectionConsoleInteraction.java346 secureArgsList.trustStorePasswordArg.isPresent()
818 commandBuilder.removeArgument(copySecureArgsList.trustStorePasswordArg);
835 secureArgsList.trustStorePasswordArg.isPresent()
985 truststorePassword = secureArgsList.trustStorePasswordArg
1054 copySecureArgsList.trustStorePasswordArg.clearValues();
1055 copySecureArgsList.trustStorePasswordArg.addValue(truststorePassword);
1057 copySecureArgsList.trustStorePasswordArg);
/forgerock/opendj2/src/server/org/opends/server/util/cli/
H A DLDAPConnectionConsoleInteraction.java345 secureArgsList.trustStorePasswordArg.isPresent()
817 commandBuilder.removeArgument(copySecureArgsList.trustStorePasswordArg);
834 secureArgsList.trustStorePasswordArg.isPresent()
984 truststorePassword = secureArgsList.trustStorePasswordArg
1053 copySecureArgsList.trustStorePasswordArg.clearValues();
1054 copySecureArgsList.trustStorePasswordArg.addValue(truststorePassword);
1056 copySecureArgsList.trustStorePasswordArg);
/forgerock/opendj2.6.2/src/server/org/opends/server/util/cli/
H A DLDAPConnectionConsoleInteraction.java346 secureArgsList.trustStorePasswordArg.isPresent()
818 commandBuilder.removeArgument(copySecureArgsList.trustStorePasswordArg);
835 secureArgsList.trustStorePasswordArg.isPresent()
985 truststorePassword = secureArgsList.trustStorePasswordArg
1054 copySecureArgsList.trustStorePasswordArg.clearValues();
1055 copySecureArgsList.trustStorePasswordArg.addValue(truststorePassword);
1057 copySecureArgsList.trustStorePasswordArg);
/forgerock/opendj2-jel-hg/src/server/org/opends/server/util/cli/
H A DLDAPConnectionConsoleInteraction.java346 secureArgsList.trustStorePasswordArg.isPresent()
818 commandBuilder.removeArgument(copySecureArgsList.trustStorePasswordArg);
835 secureArgsList.trustStorePasswordArg.isPresent()
985 truststorePassword = secureArgsList.trustStorePasswordArg
1054 copySecureArgsList.trustStorePasswordArg.clearValues();
1055 copySecureArgsList.trustStorePasswordArg.addValue(truststorePassword);
1057 copySecureArgsList.trustStorePasswordArg);
/forgerock/opendj2-hg/src/server/org/opends/server/util/cli/
H A DLDAPConnectionConsoleInteraction.java345 secureArgsList.trustStorePasswordArg.isPresent()
817 commandBuilder.removeArgument(copySecureArgsList.trustStorePasswordArg);
834 secureArgsList.trustStorePasswordArg.isPresent()
984 truststorePassword = secureArgsList.trustStorePasswordArg
1053 copySecureArgsList.trustStorePasswordArg.clearValues();
1054 copySecureArgsList.trustStorePasswordArg.addValue(truststorePassword);
1056 copySecureArgsList.trustStorePasswordArg);
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/util/cli/
H A DLDAPConnectionConsoleInteraction.java857 commandBuilder.removeArgument(copySecureArgsList.trustStorePasswordArg);
872 && !secureArgsList.trustStorePasswordArg.isPresent()
1016 if (secureArgsList.trustStorePasswordArg.isPresent())
1018 state.truststorePassword = secureArgsList.trustStorePasswordArg.getValue();
1083 copySecureArgsList.trustStorePasswordArg.clearValues();
1084 copySecureArgsList.trustStorePasswordArg.addValue(state.truststorePassword);
1085 commandBuilder.addObfuscatedArgument(copySecureArgsList.trustStorePasswordArg);

Completed in 72 milliseconds