Searched refs:aliases (Results 1 - 25 of 144) sorted by relevance

123456

/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/util/
H A DSelectableCertificateKeyManager.java61 /** The aliases of the certificates that should be selected from the key manager. */
62 private final SortedSet<String> aliases; field in class:SelectableCertificateKeyManager
70 private SelectableCertificateKeyManager(X509KeyManager keyManager, SortedSet<String> aliases, String componentName) argument
74 this.aliases = aliases;
82 this.aliases = CollectionUtils.newTreeSet(alias);
118 logger.debug(INFO_MISSING_KEY_TYPE_IN_ALIASES, componentName, aliases.toString(), Arrays.toString(keyType));
130 for (String certificateAlias : aliases)
194 logger.debug(INFO_MISSING_KEY_TYPE_IN_ALIASES, componentName, aliases.toString(), Arrays.toString(keyType));
204 * on the KeyStore implementation. It is recommended not to use aliases i
297 wrap(KeyManager[] keyManagers, SortedSet<String> aliases, String componentName) argument
320 wrap(KeyManager[] keyManagers, SortedSet<String> aliases) argument
[all...]
H A DCertificateManager.java195 * Retrieves the aliases of the certificates in the specified key store.
197 * @return The aliases of the certificates in the specified key store, or
210 aliasEnumeration = keyStore.aliases();
220 String[] aliases = new String[aliasList.size()];
221 return aliasList.toArray(aliases);
410 * Returns whether this certificate manager contains 'real' aliases or not.
413 * @return whether this certificate manager contains 'real' aliases or not.
420 String[] aliases = getCertificateAliases();
421 if (aliases == null || aliases
[all...]
/forgerock/opendj-b2.6/src/guitools/org/opends/guitools/controlpanel/ui/
H A DSchemaElementPanel.java139 * Returns the list of aliases for the provided attribute.
141 * @return the list of aliases for the provided attribute.
145 Set<String> aliases = new LinkedHashSet<String>();
156 aliases.add(name);
159 return aliases;
163 * Returns the list of aliases for the provided object class.
165 * @return the list of aliases for the provided object class.
169 Set<String> aliases = new LinkedHashSet<String>();
180 aliases.add(name);
183 return aliases;
[all...]
/forgerock/opendj2/src/guitools/org/opends/guitools/controlpanel/ui/
H A DSchemaElementPanel.java138 * Returns the list of aliases for the provided attribute.
140 * @return the list of aliases for the provided attribute.
144 Set<String> aliases = new LinkedHashSet<String>();
155 aliases.add(name);
158 return aliases;
162 * Returns the list of aliases for the provided object class.
164 * @return the list of aliases for the provided object class.
168 Set<String> aliases = new LinkedHashSet<String>();
179 aliases.add(name);
182 return aliases;
[all...]
/forgerock/opendj2.6.2/src/guitools/org/opends/guitools/controlpanel/ui/
H A DSchemaElementPanel.java139 * Returns the list of aliases for the provided attribute.
141 * @return the list of aliases for the provided attribute.
145 Set<String> aliases = new LinkedHashSet<String>();
156 aliases.add(name);
159 return aliases;
163 * Returns the list of aliases for the provided object class.
165 * @return the list of aliases for the provided object class.
169 Set<String> aliases = new LinkedHashSet<String>();
180 aliases.add(name);
183 return aliases;
[all...]
/forgerock/opendj2-hg/src/guitools/org/opends/guitools/controlpanel/ui/
H A DSchemaElementPanel.java138 * Returns the list of aliases for the provided attribute.
140 * @return the list of aliases for the provided attribute.
144 Set<String> aliases = new LinkedHashSet<String>();
155 aliases.add(name);
158 return aliases;
162 * Returns the list of aliases for the provided object class.
164 * @return the list of aliases for the provided object class.
168 Set<String> aliases = new LinkedHashSet<String>();
179 aliases.add(name);
182 return aliases;
[all...]
/forgerock/opendj2-jel-hg/src/guitools/org/opends/guitools/controlpanel/ui/
H A DSchemaElementPanel.java139 * Returns the list of aliases for the provided attribute.
141 * @return the list of aliases for the provided attribute.
145 Set<String> aliases = new LinkedHashSet<String>();
156 aliases.add(name);
159 return aliases;
163 * Returns the list of aliases for the provided object class.
165 * @return the list of aliases for the provided object class.
169 Set<String> aliases = new LinkedHashSet<String>();
180 aliases.add(name);
183 return aliases;
[all...]
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/guitools/controlpanel/ui/
H A DSchemaElementPanel.java136 * Returns the list of aliases for the provided attribute.
138 * @return the list of aliases for the provided attribute.
146 * Returns the list of aliases for the provided object class.
148 * @return the list of aliases for the provided object class.
157 Set<String> aliases = new LinkedHashSet<>();
166 aliases.add(name);
169 return aliases;
/forgerock/openam-v13/openam-ui/openam-ui-ria/src/main/js/org/forgerock/openam/ui/admin/views/realms/dashboard/
H A DDashboardView.js55 aliases: realmData.values.aliases
/forgerock/openam/openam-ui/openam-ui-ria/src/main/js/org/forgerock/openam/ui/admin/views/realms/dashboard/
H A DDashboardView.js43 aliases: realmData.values.aliases
/forgerock/opendj-b2.6/src/server/org/opends/server/util/
H A DCertificateManager.java201 * Retrieves the aliases of the certificates in the specified key store.
203 * @return The aliases of the certificates in the specified key store, or
214 aliasEnumeration = keyStore.aliases();
220 String[] aliases = new String[aliasList.size()];
221 return aliasList.toArray(aliases);
412 * Returns whether this certificate manager contains 'real' aliases or not.
415 * @return whether this certificate manager contains 'real' aliases or not.
422 String[] aliases = getCertificateAliases();
423 if (aliases == null || aliases
[all...]
/forgerock/opendj2/src/quicksetup/org/opends/quicksetup/util/
H A DUIKeyStore.java209 Enumeration<String> aliases = adminKeyStore.aliases();
210 while (aliases.hasMoreElements())
212 String alias = aliases.nextElement();
271 Enumeration<String> aliases = keyStore.aliases();
272 while (aliases.hasMoreElements() && !found)
274 String alias = aliases.nextElement();
/forgerock/opendj-b2.6/src/quicksetup/org/opends/quicksetup/util/
H A DUIKeyStore.java210 Enumeration<String> aliases = adminKeyStore.aliases();
211 while (aliases.hasMoreElements())
213 String alias = aliases.nextElement();
272 Enumeration<String> aliases = keyStore.aliases();
273 while (aliases.hasMoreElements() && !found)
275 String alias = aliases.nextElement();
/forgerock/opendj2/src/server/org/opends/server/util/
H A DCertificateManager.java200 * Retrieves the aliases of the certificates in the specified key store.
202 * @return The aliases of the certificates in the specified key store, or
213 aliasEnumeration = keyStore.aliases();
219 String[] aliases = new String[aliasList.size()];
220 return aliasList.toArray(aliases);
411 * Returns whether this certificate manager contains 'real' aliases or not.
414 * @return whether this certificate manager contains 'real' aliases or not.
421 String[] aliases = getCertificateAliases();
422 if (aliases == null || aliases
[all...]
/forgerock/opendj2.6.2/src/quicksetup/org/opends/quicksetup/util/
H A DUIKeyStore.java210 Enumeration<String> aliases = adminKeyStore.aliases();
211 while (aliases.hasMoreElements())
213 String alias = aliases.nextElement();
272 Enumeration<String> aliases = keyStore.aliases();
273 while (aliases.hasMoreElements() && !found)
275 String alias = aliases.nextElement();
/forgerock/opendj2.6.2/src/server/org/opends/server/util/
H A DCertificateManager.java201 * Retrieves the aliases of the certificates in the specified key store.
203 * @return The aliases of the certificates in the specified key store, or
214 aliasEnumeration = keyStore.aliases();
220 String[] aliases = new String[aliasList.size()];
221 return aliasList.toArray(aliases);
412 * Returns whether this certificate manager contains 'real' aliases or not.
415 * @return whether this certificate manager contains 'real' aliases or not.
422 String[] aliases = getCertificateAliases();
423 if (aliases == null || aliases
[all...]
/forgerock/opendj2-jel-hg/src/server/org/opends/server/util/
H A DCertificateManager.java201 * Retrieves the aliases of the certificates in the specified key store.
203 * @return The aliases of the certificates in the specified key store, or
214 aliasEnumeration = keyStore.aliases();
220 String[] aliases = new String[aliasList.size()];
221 return aliasList.toArray(aliases);
412 * Returns whether this certificate manager contains 'real' aliases or not.
415 * @return whether this certificate manager contains 'real' aliases or not.
422 String[] aliases = getCertificateAliases();
423 if (aliases == null || aliases
[all...]
/forgerock/opendj2-hg/src/quicksetup/org/opends/quicksetup/util/
H A DUIKeyStore.java209 Enumeration<String> aliases = adminKeyStore.aliases();
210 while (aliases.hasMoreElements())
212 String alias = aliases.nextElement();
271 Enumeration<String> aliases = keyStore.aliases();
272 while (aliases.hasMoreElements() && !found)
274 String alias = aliases.nextElement();
/forgerock/opendj2-hg/src/server/org/opends/server/util/
H A DCertificateManager.java200 * Retrieves the aliases of the certificates in the specified key store.
202 * @return The aliases of the certificates in the specified key store, or
213 aliasEnumeration = keyStore.aliases();
219 String[] aliases = new String[aliasList.size()];
220 return aliasList.toArray(aliases);
411 * Returns whether this certificate manager contains 'real' aliases or not.
414 * @return whether this certificate manager contains 'real' aliases or not.
421 String[] aliases = getCertificateAliases();
422 if (aliases == null || aliases
[all...]
/forgerock/opendj2-jel-hg/src/quicksetup/org/opends/quicksetup/util/
H A DUIKeyStore.java212 Enumeration<String> aliases = adminKeyStore.aliases();
213 while (aliases.hasMoreElements())
215 String alias = aliases.nextElement();
273 Enumeration<String> aliases = keyStore.aliases();
274 while (aliases.hasMoreElements() && !found)
276 String alias = aliases.nextElement();
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/quicksetup/util/
H A DUIKeyStore.java208 Enumeration<String> aliases = adminKeyStore.aliases();
209 while (aliases.hasMoreElements())
211 String alias = aliases.nextElement();
270 Enumeration<String> aliases = keyStore.aliases();
271 while (aliases.hasMoreElements() && !found)
273 String alias = aliases.nextElement();
/forgerock/openam/openam-core-rest/src/test/java/org/forgerock/openam/core/rest/sms/
H A DSmsRealmProviderTest.java73 private JsonValue aliases; field in class:SmsRealmProviderTest
104 when(aliases.isNotNull()).thenReturn(true);
105 when(aliases.toString()).thenReturn("notnull");
106 when(aliases.isCollection()).thenReturn(true);
107 when(aliases.asList(String.class)).thenReturn(Arrays.asList(new String[] {"alias1", "alias2"}));
112 when(createContent.get(ALIASES_ATTRIBUTE_NAME)).thenReturn(aliases);
185 when(aliases.isCollection()).thenReturn(false);
197 when(aliases.asList(String.class)).thenReturn(Arrays.asList(new String[] {"#*?%$#"}));
/forgerock/openam-v13/openam-cli/openam-cli-impl/src/main/java/com/sun/identity/federation/cli/tools/
H A DWebHelperMethodCreator.java57 private Set<String> aliases = new HashSet<String>(); field in class:WebHelperMethodCreator
64 List<String> aliases
71 registerAliases(aliases);
126 aliases.add(st.nextToken());
150 if (!aliases.contains(opt) && !isAuthField(opt) && !isIgnored(opt)){
165 if (!aliases.contains(opt) && !isAuthField(opt) && !isIgnored(opt)){
191 if (!aliases.contains(opt) && !isAuthField(opt) && !isIgnored(opt)){
/forgerock/openam/openam-cli/openam-cli-impl/src/main/java/com/sun/identity/federation/cli/tools/
H A DWebHelperMethodCreator.java57 private Set<String> aliases = new HashSet<String>(); field in class:WebHelperMethodCreator
64 List<String> aliases
71 registerAliases(aliases);
126 aliases.add(st.nextToken());
150 if (!aliases.contains(opt) && !isAuthField(opt) && !isIgnored(opt)){
165 if (!aliases.contains(opt) && !isAuthField(opt) && !isIgnored(opt)){
191 if (!aliases.contains(opt) && !isAuthField(opt) && !isIgnored(opt)){
/forgerock/openam-v13/openam-cli/openam-cli-impl/src/main/java/com/sun/identity/cli/
H A DUsageFormatter.java234 List aliases = cmd.getOptionAliases(opt);
236 if ((aliases != null) && !aliases.isEmpty()) {
237 for (Iterator j = aliases.iterator(); j.hasNext();) {
343 List aliases = cmd.getOptionAliases(opt);
345 if ((aliases == null) || aliases.isEmpty()) {
349 formatOption(buff, opt, aliases, cmd,
372 List aliases,
380 int sz = aliases
369 formatOption( StringBuffer buff, String opt, List aliases, SubCommand cmd, String format, String aliasFormat ) argument
[all...]

Completed in 59 milliseconds

123456