Searched defs:getMapAttr (Results 1 - 6 of 6) sorted by relevance

/forgerock/openam-v13/openam-core/src/main/java/com/iplanet/am/util/
H A DMisc.java60 * {@link com.sun.identity.shared.datastruct.CollectionHelper#getMapAttr(Map, String)}
62 public static String getMapAttr(Map m, String name) { method in class:Misc
80 * {@link com.sun.identity.shared.datastruct.CollectionHelper#getMapAttr(Map, String, String)}
82 public static String getMapAttr(Map m, String name, String defaultValue) { method in class:Misc
128 return Integer.parseInt(getMapAttr(m, name, defaultValue));
158 return Integer.parseInt(getMapAttr(m, name));
/forgerock/openam/openam-core/src/main/java/com/iplanet/am/util/
H A DMisc.java60 * {@link com.sun.identity.shared.datastruct.CollectionHelper#getMapAttr(Map, String)}
62 public static String getMapAttr(Map m, String name) { method in class:Misc
80 * {@link com.sun.identity.shared.datastruct.CollectionHelper#getMapAttr(Map, String, String)}
82 public static String getMapAttr(Map m, String name, String defaultValue) { method in class:Misc
128 return Integer.parseInt(getMapAttr(m, name, defaultValue));
158 return Integer.parseInt(getMapAttr(m, name));
/forgerock/openam-v13/openam-shared/src/main/java/com/sun/identity/shared/datastruct/
H A DCollectionHelper.java64 public static String getMapAttr(Map map, String name) { method in class:CollectionHelper
79 public static String getMapAttr(Map map, String name, String defaultValue) { method in class:CollectionHelper
80 String str = getMapAttr(map, name);
93 String str = getMapAttr(map, key);
181 String value = getMapAttr(map, name, Boolean.toString(defaultValue));
220 return Integer.parseInt(getMapAttr(map, name, defaultValue));
243 return Integer.parseInt(getMapAttr(map, name));
264 return Integer.parseInt(getMapAttr(map, name));
282 valueString = getMapAttr(config, name);
305 return Long.parseLong(getMapAttr(ma
[all...]
/forgerock/openam/openam-shared/src/main/java/com/sun/identity/shared/datastruct/
H A DCollectionHelper.java66 public static String getMapAttr(Map<?, ?> map, String name) { method in class:CollectionHelper
80 public static String getMapAttr(Map map, String name, String defaultValue) { method in class:CollectionHelper
81 String str = getMapAttr(map, name);
94 String str = getMapAttr(map, key);
177 String value = getMapAttr(map, name, Boolean.toString(defaultValue));
209 valueString = getMapAttr(map, name);
233 valueString = getMapAttr(map, name);
255 valueString = getMapAttr(config, name);
279 valueString = getMapAttr(map, name);
300 valueString = getMapAttr(confi
[all...]
/forgerock/openam-v13/openam-authentication/openam-auth-windowsdesktopsso/src/main/java/com/sun/identity/authentication/modules/windowsdesktopsso/
H A DWindowsDesktopSSO.java525 servicePrincipalName = getMapAttr(options, PRINCIPAL);
526 keyTabFile = getMapAttr(options, KEYTAB);
527 kdcRealm = getMapAttr(options, REALM);
528 kdcServer = getMapAttr(options, KDC);
529 authLevel = getMapAttr(options, AUTHLEVEL);
531 Boolean.valueOf(getMapAttr(options,RETURNREALM)).booleanValue();
533 Boolean.valueOf(getMapAttr(options,LOOKUPUSER)).booleanValue();
646 private String getMapAttr(Map options, int index) { method in class:WindowsDesktopSSO
647 return CollectionHelper.getMapAttr(options, configAttributes[index]);
/forgerock/openam/openam-authentication/openam-auth-windowsdesktopsso/src/main/java/com/sun/identity/authentication/modules/windowsdesktopsso/
H A DWindowsDesktopSSO.java525 servicePrincipalName = getMapAttr(options, PRINCIPAL);
526 keyTabFile = getMapAttr(options, KEYTAB);
527 kdcRealm = getMapAttr(options, REALM);
528 kdcServer = getMapAttr(options, KDC);
529 authLevel = getMapAttr(options, AUTHLEVEL);
531 Boolean.valueOf(getMapAttr(options,RETURNREALM)).booleanValue();
533 Boolean.valueOf(getMapAttr(options,LOOKUPUSER)).booleanValue();
646 private String getMapAttr(Map options, int index) { method in class:WindowsDesktopSSO
647 return CollectionHelper.getMapAttr(options, configAttributes[index]);

Completed in 37 milliseconds