Searched refs:getIntMapAttr (Results 1 - 25 of 34) sorted by relevance

12

/forgerock/openam-v13/openam-audit/openam-audit-configuration/src/main/java/org/forgerock/openam/audit/events/handlers/
H A DJdbcAuditEventHandlerFactory.java105 int connectionTimeoutSeconds = getIntMapAttr(attributes, "connectionTimeout", 30, DEBUG);
108 int idleTimeoutSeconds = getIntMapAttr(attributes, "idleTimeout", 600, DEBUG);
111 int maxLifetimeSeconds = getIntMapAttr(attributes, "maxLifetime", 1800, DEBUG);
114 hikariConfig.setMinimumIdle(getIntMapAttr(attributes, "minIdle", 10, DEBUG));
115 hikariConfig.setMaximumPoolSize(getIntMapAttr(attributes, "maxPoolSize", 10, DEBUG));
122 bufferingConfiguration.setMaxSize(getIntMapAttr(attributes, "bufferingMaxSize", 100000, DEBUG));
124 bufferingConfiguration.setWriterThreads(getIntMapAttr(attributes, "bufferingWriterThreads", 1, DEBUG));
125 bufferingConfiguration.setMaxBatchedEvents(getIntMapAttr(attributes, "bufferingMaxBatchedEvents", 100, DEBUG));
H A DCsvAuditEventHandlerFactory.java108 int maxNumberOfHistoryFiles = getIntMapAttr(attributes, "retentionMaxNumberOfHistoryFiles", 1, DEBUG);
/forgerock/openam/openam-audit/openam-audit-configuration/src/main/java/org/forgerock/openam/audit/events/handlers/
H A DJdbcAuditEventHandlerFactory.java105 int connectionTimeoutSeconds = getIntMapAttr(attributes, "connectionTimeout", 30, DEBUG);
108 int idleTimeoutSeconds = getIntMapAttr(attributes, "idleTimeout", 600, DEBUG);
111 int maxLifetimeSeconds = getIntMapAttr(attributes, "maxLifetime", 1800, DEBUG);
114 hikariConfig.setMinimumIdle(getIntMapAttr(attributes, "minIdle", 10, DEBUG));
115 hikariConfig.setMaximumPoolSize(getIntMapAttr(attributes, "maxPoolSize", 10, DEBUG));
122 bufferingConfiguration.setMaxSize(getIntMapAttr(attributes, "bufferingMaxSize", 100000, DEBUG));
124 bufferingConfiguration.setWriterThreads(getIntMapAttr(attributes, "bufferingWriterThreads", 1, DEBUG));
125 bufferingConfiguration.setMaxBatchedEvents(getIntMapAttr(attributes, "bufferingMaxBatchedEvents", 100, DEBUG));
H A DElasticsearchAuditEventHandlerFactory.java100 bufferingConfiguration.setMaxBatchedEvents(getIntMapAttr(attributes, "batchSize", 500, DEBUG));
101 bufferingConfiguration.setMaxSize(getIntMapAttr(attributes, "maxEvents", 10000, DEBUG));
103 Integer writeInterval = getIntMapAttr(attributes, "writeInterval", 1000, DEBUG);
121 connection.setPort(getIntMapAttr(attributes, "port", 9200, DEBUG));
H A DSplunkAuditEventHandlerFactory.java101 bufferingConfiguration.setMaxBatchedEvents(getIntMapAttr(attributes, "batchSize", 500, DEBUG));
102 bufferingConfiguration.setMaxSize(getIntMapAttr(attributes, "maxEvents", 10000, DEBUG));
103 Integer writeInterval = getIntMapAttr(attributes, "writeInterval", 1000, DEBUG);
113 connection.setPort(getIntMapAttr(attributes, "port", 8088, DEBUG));
H A DJmsAuditEventHandlerFactory.java89 batchPublisherConfig.setCapacity(getIntMapAttr(attributes, "batchCapacity", 1000, DEBUG));
90 batchPublisherConfig.setMaxBatchedEvents(getIntMapAttr(attributes, "maxBatchedEvents", 100, DEBUG));
91 batchPublisherConfig.setThreadCount(getIntMapAttr(attributes, "batchThreadCount", 3, DEBUG));
H A DCsvAuditEventHandlerFactory.java108 int maxNumberOfHistoryFiles = getIntMapAttr(attributes, "retentionMaxNumberOfHistoryFiles", 1, DEBUG);
/forgerock/openam-v13/openam-radius/openam-radius-server/src/main/java/org/forgerock/openam/radius/server/config/
H A DConfigLoader.java87 final int listenerPort = CollectionHelper.getIntMapAttr(configAttributes,
89 final int coreThreads = CollectionHelper.getIntMapAttr(configAttributes,
91 final int maxThreads = CollectionHelper.getIntMapAttr(configAttributes,
93 final int queueSize = CollectionHelper.getIntMapAttr(configAttributes,
95 final int keepaliveSeconds = CollectionHelper.getIntMapAttr(configAttributes,
/forgerock/openam/openam-radius/openam-radius-server/src/main/java/org/forgerock/openam/radius/server/config/
H A DConfigLoader.java87 final int listenerPort = CollectionHelper.getIntMapAttr(configAttributes,
89 final int coreThreads = CollectionHelper.getIntMapAttr(configAttributes,
91 final int maxThreads = CollectionHelper.getIntMapAttr(configAttributes,
93 final int queueSize = CollectionHelper.getIntMapAttr(configAttributes,
95 final int keepaliveSeconds = CollectionHelper.getIntMapAttr(configAttributes,
/forgerock/openam-v13/openam-core/src/main/java/com/iplanet/am/util/
H A DMisc.java123 * {@link com.sun.identity.shared.datastruct.CollectionHelper#getIntMapAttr(Map, String, String, Debug)}
125 public static int getIntMapAttr(Map m, String name, String defaultValue, method in class:Misc
130 debug.error("getIntMapAttr : " + name, e);
153 * {@link com.sun.identity.shared.datastruct.CollectionHelper#getIntMapAttr(Map, String, int, Debug)}
155 public static int getIntMapAttr(Map m, String name, int defaultValue, method in class:Misc
160 debug.error("getIntMapAttr : " + name, e);
/forgerock/openam/openam-core/src/main/java/com/iplanet/am/util/
H A DMisc.java123 * {@link com.sun.identity.shared.datastruct.CollectionHelper#getIntMapAttr(Map, String, String, Debug)}
125 public static int getIntMapAttr(Map m, String name, String defaultValue, method in class:Misc
130 debug.error("getIntMapAttr : " + name, e);
153 * {@link com.sun.identity.shared.datastruct.CollectionHelper#getIntMapAttr(Map, String, int, Debug)}
155 public static int getIntMapAttr(Map m, String name, int defaultValue, method in class:Misc
160 debug.error("getIntMapAttr : " + name, e);
/forgerock/openam/openam-push-notification/src/main/java/org/forgerock/openam/services/push/
H A DPushNotificationServiceConfigHelper.java75 int concurrency = CollectionHelper.getIntMapAttr(serviceConfig.getAttributes(), MESSAGE_DISPATCHER_CONCURRENCY,
/forgerock/openam-v13/openam-federation/OpenFM/src/main/java/com/sun/identity/liberty/ws/soapbinding/
H A DWebServiceAuthenticatorImpl.java207 is.setMaxSessionTime(CollectionHelper.getIntMapAttr(
209 is.setMaxIdleTime(CollectionHelper.getIntMapAttr(
211 is.setMaxCachingTime(CollectionHelper.getIntMapAttr(
/forgerock/openam/openam-federation/OpenFM/src/main/java/com/sun/identity/liberty/ws/soapbinding/
H A DWebServiceAuthenticatorImpl.java210 is.setMaxSessionTime(CollectionHelper.getIntMapAttr(
212 is.setMaxIdleTime(CollectionHelper.getIntMapAttr(
214 is.setMaxCachingTime(CollectionHelper.getIntMapAttr(
/forgerock/openam/openam-authentication/openam-auth-fr-oath/src/main/java/org/forgerock/openam/authentication/modules/fr/oath/
H A DAuthenticatorOATH.java223 this.passLen = CollectionHelper.getIntMapAttr(options, PASSWORD_LENGTH, 0, debug);
229 this.minSecretKeyLength = CollectionHelper.getIntMapAttr(options, MIN_SECRET_KEY_LENGTH, 0, debug);
234 this.windowSize = CollectionHelper.getIntMapAttr(options, WINDOW_SIZE, 0, debug);
235 this.truncationOffset = CollectionHelper.getIntMapAttr(options, TRUNCATION_OFFSET, -1, debug);
237 this.totpTimeStep = CollectionHelper.getIntMapAttr(options, TOTP_TIME_STEP, 1, debug);
238 this.totpStepsInWindow = CollectionHelper.getIntMapAttr(options, TOTP_STEPS_IN_WINDOW, 1, debug);
240 this.totpMaxClockDrift = CollectionHelper.getIntMapAttr(options, MAXIMUM_CLOCK_DRIFT, 0, debug);
/forgerock/openam/openam-oauth2/src/main/java/org/forgerock/openam/oauth2/
H A DOAuth2GlobalSettings.java126 blacklistCacheSize = CollectionHelper.getIntMapAttr(attrs, "blacklistCacheSize", 0, logger);
/forgerock/openam-v13/openam-authentication/openam-auth-fr-oath/src/main/java/org/forgerock/openam/authentication/modules/fr/oath/
H A DAuthenticatorOATH.java199 this.passLen = CollectionHelper.getIntMapAttr(options, PASSWORD_LENGTH, 0, debug);
205 this.minSecretKeyLength = CollectionHelper.getIntMapAttr(options, MIN_SECRET_KEY_LENGTH, 0, debug);
210 this.windowSize = CollectionHelper.getIntMapAttr(options, WINDOW_SIZE, 0, debug);
211 this.truncationOffset = CollectionHelper.getIntMapAttr(options, TRUNCATION_OFFSET, -1, debug);
213 this.totpTimeStep = CollectionHelper.getIntMapAttr(options, TOTP_TIME_STEP, 1, debug);
214 this.totpStepsInWindow = CollectionHelper.getIntMapAttr(options, TOTP_STEPS_IN_WINDOW, 1, debug);
216 this.totpMaxClockDrift = CollectionHelper.getIntMapAttr(options, MAXIMUM_CLOCK_DRIFT, 0, debug);
/forgerock/openam-v13/openam-core/src/main/java/com/iplanet/dpro/session/service/
H A DSessionServiceConfig.java208 sessionBlacklistCacheSize = CollectionHelper.getIntMapAttr(attrs, SESSION_BLACKLIST_CACHE_SIZE_ATTR, 0,
230 int value = CollectionHelper.getIntMapAttr(
316 int value = CollectionHelper.getIntMapAttr(
H A DSessionConstraint.java233 quota = CollectionHelper.getIntMapAttr(
/forgerock/openam/openam-core/src/main/java/com/iplanet/dpro/session/service/
H A DSessionServiceConfig.java165 sessionBlacklistCacheSize = CollectionHelper.getIntMapAttr(attrs, SESSION_BLACKLIST_CACHE_SIZE_ATTR, 0,
187 int value = CollectionHelper.getIntMapAttr(
264 int value = CollectionHelper.getIntMapAttr(
H A DSessionConstraint.java222 quota = CollectionHelper.getIntMapAttr(attrs, SESSION_QUOTA_ATTR_NAME, DEFAULT_QUOTA, debug);
/forgerock/openam-v13/openam-datastore/src/main/java/org/forgerock/openam/idrepo/ldap/psearch/
H A DDJLDAPv3PersistentSearch.java53 super(CollectionHelper.getIntMapAttr(configMap, LDAP_RETRY_INTERVAL, 3000, DEBUG),
/forgerock/openam/openam-datastore/src/main/java/org/forgerock/openam/idrepo/ldap/psearch/
H A DDJLDAPv3PersistentSearch.java60 super(CollectionHelper.getIntMapAttr(configMap, LDAP_RETRY_INTERVAL, 3000, DEBUG),
/forgerock/openam-v13/openam-shared/src/main/java/com/sun/identity/shared/datastruct/
H A DCollectionHelper.java213 public static int getIntMapAttr( method in class:CollectionHelper
222 debug.error("CollectionHelper.getIntMapAttr", nfe);
236 public static int getIntMapAttr( method in class:CollectionHelper
245 debug.error("CollectionHelper.getIntMapAttr", nfe);
/forgerock/openam/openam-shared/src/main/java/com/sun/identity/shared/datastruct/
H A DCollectionHelper.java206 public static int getIntMapAttr(Map map, String name, int defaultValue, Debug debug) { method in class:CollectionHelper

Completed in 109 milliseconds

12