Searched refs:SystemProperties (Results 1 - 25 of 542) sorted by relevance

1234567891011>>

/forgerock/openam-v13/openam-core/src/main/java/org/forgerock/openam/sm/datalayer/utils/
H A DTimeoutConfig.java18 import com.iplanet.am.util.SystemProperties;
41 return SystemProperties.getAsInt(DataLayerConstants.CORE_TOKEN_ASYNC_TIMEOUT, 10);
43 return SystemProperties.getAsInt(DataLayerConstants.CORE_TOKEN_REAPER_TIMEOUT, NO_TIMEOUT);
45 return SystemProperties.getAsInt(DataLayerConstants.DATA_LAYER_TIMEOUT, 10);
47 return SystemProperties.getAsInt(DataLayerConstants.RESOURCE_SETS_TIMEOUT,
50 return SystemProperties.getAsInt(DataLayerConstants.UMA_AUDIT_ENTRY_TIMEOUT,
53 return SystemProperties.getAsInt(DataLayerConstants.UMA_PENDING_REQUESTS_TIMEOUT,
56 return SystemProperties.getAsInt(DataLayerConstants.UMA_LABELS_TIMEOUT,
/forgerock/openam/openam-core/src/main/java/org/forgerock/openam/session/
H A DSessionMeta.java30 import com.iplanet.am.util.SystemProperties;
47 appSSOTokenRefreshTime = SystemProperties.getAsLong(REFRESH_TIME_PROPERTY, 3);
H A DSessionConstants.java29 import com.iplanet.am.util.SystemProperties;
40 SystemProperties.get(Constants.AM_SESSION_HTTP_SESSION_TRACKING_COOKIE_NAME, "JSESSIONID");
66 SystemProperties.getAsBoolean("com.sun.identity.session.resetLBCookie", false);
/forgerock/openam-v13/openam-core/src/main/java/org/forgerock/openam/session/
H A DSessionMeta.java19 import com.iplanet.am.util.SystemProperties;
43 purgeDelay = SystemProperties.getAsLong("com.iplanet.am.session.purgedelay", 120);
44 appSSOTokenRefreshTime = SystemProperties.getAsLong("com.iplanet.am.client.appssotoken.refreshtime", 3);
H A DSessionConstants.java18 import com.iplanet.am.util.SystemProperties;
29 SystemProperties.get(Constants.AM_SESSION_HTTP_SESSION_TRACKING_COOKIE_NAME, "JSESSIONID");
73 SystemProperties.getAsBoolean("com.sun.identity.session.resetLBCookie", false);
/forgerock/openam-v13/openam-core/src/main/java/com/iplanet/am/util/
H A DSystemPropertiesWrapper.java24 * Wraps the call to {@link com.iplanet.am.util.SystemProperties#getAsInt(String, int)}.
31 return SystemProperties.getAsInt(key, def);
/forgerock/openam/openam-core/src/main/java/org/forgerock/openam/notifications/
H A DNotificationsConfig.java23 import com.iplanet.am.util.SystemProperties;
37 SystemProperties.observe(new ConfigurationListener() {
41 agentsEnabled = SystemProperties.getAsBoolean(NOTIFICATIONS_AGENTS_ENABLED, true);
46 agentsEnabled = SystemProperties.getAsBoolean(NOTIFICATIONS_AGENTS_ENABLED, true);
/forgerock/openam-v13/openam-core/src/main/java/com/iplanet/services/cdm/
H A DICDMConstants.java34 import com.iplanet.am.util.SystemProperties;
53 SystemProperties.get(DEFAULT_CHARSET_PROPERTY,
/forgerock/openam-v13/openam-radius/openam-radius-server/src/main/java/org/forgerock/openam/radius/server/spi/handlers/amhandler/
H A DContextCacheSize.java21 import com.iplanet.am.util.SystemProperties;
45 desiredCacheSize = SystemProperties.getAsInt(SYSTEM_MAX_PROPS_KEY, 5000) / 2;
/forgerock/openam-v13/openam-audit/openam-audit-configuration/src/main/java/org/forgerock/openam/audit/configuration/
H A DTransactionIdConfigurationImpl.java20 import com.iplanet.am.util.SystemProperties;
31 return SystemProperties.getAsBoolean("org.forgerock.http.TrustTransactionHeader", false);
/forgerock/openam/openam-radius/openam-radius-server/src/main/java/org/forgerock/openam/radius/server/spi/handlers/amhandler/
H A DContextCacheSize.java21 import com.iplanet.am.util.SystemProperties;
44 desiredCacheSize = SystemProperties.getAsInt(SYSTEM_MAX_PROPS_KEY, 5000) / 2;
/forgerock/openam/openam-audit/openam-audit-configuration/src/main/java/org/forgerock/openam/audit/configuration/
H A DTransactionIdConfigurationImpl.java20 import com.iplanet.am.util.SystemProperties;
31 return SystemProperties.getAsBoolean("org.forgerock.http.TrustTransactionHeader", false);
/forgerock/openam/openam-core/src/main/java/com/iplanet/am/util/
H A DSystemPropertiesWrapper.java26 * Wraps the call to {@link com.iplanet.am.util.SystemProperties#getAsInt(String, int)}.
33 return SystemProperties.getAsInt(key, def);
37 * Wraps the call to {@link com.iplanet.am.util.SystemProperties#observe(ConfigurationListener, String...)}
44 SystemProperties.observe(listener, properties);
/forgerock/openam/openam-core/src/main/java/com/iplanet/services/cdm/
H A DICDMConstants.java34 import com.iplanet.am.util.SystemProperties;
53 SystemProperties.get(DEFAULT_CHARSET_PROPERTY,
/forgerock/openam/openam-core/src/main/java/org/forgerock/openam/sm/datalayer/utils/
H A DTimeoutConfig.java19 import com.iplanet.am.util.SystemProperties;
42 return SystemProperties.getAsInt(DataLayerConstants.CORE_TOKEN_ASYNC_TIMEOUT, 10);
46 return SystemProperties.getAsInt(DataLayerConstants.CORE_TOKEN_WORKER_TIMEOUT, NO_TIMEOUT);
48 return SystemProperties.getAsInt(DataLayerConstants.DATA_LAYER_TIMEOUT, 10);
50 return SystemProperties.getAsInt(DataLayerConstants.RESOURCE_SETS_TIMEOUT,
53 return SystemProperties.getAsInt(DataLayerConstants.UMA_AUDIT_ENTRY_TIMEOUT,
56 return SystemProperties.getAsInt(DataLayerConstants.UMA_PENDING_REQUESTS_TIMEOUT,
59 return SystemProperties.getAsInt(DataLayerConstants.UMA_LABELS_TIMEOUT,
/forgerock/openam-v13/openam-core/src/test/java/org/forgerock/openam/cts/impl/
H A DLDAPConfigTest.java18 import com.iplanet.am.util.SystemProperties;
35 @PrepareForTest(SystemProperties.class)
43 PowerMockito.mockStatic(SystemProperties.class);
44 given(SystemProperties.get("test-root-suffix")).willReturn("badger");
55 PowerMockito.mockStatic(SystemProperties.class);
56 given(SystemProperties.get("test-root-suffix")).willReturn(null);
67 PowerMockito.mockStatic(SystemProperties.class);
68 given(SystemProperties.get("test-root-suffix")).willReturn(null);
82 PowerMockito.mockStatic(SystemProperties.class);
83 given(SystemProperties
[all...]
/forgerock/openam/openam-core/src/test/java/org/forgerock/openam/cts/impl/
H A DLDAPConfigTest.java18 import com.iplanet.am.util.SystemProperties;
35 @PrepareForTest(SystemProperties.class)
43 PowerMockito.mockStatic(SystemProperties.class);
44 given(SystemProperties.get("test-root-suffix")).willReturn("badger");
55 PowerMockito.mockStatic(SystemProperties.class);
56 given(SystemProperties.get("test-root-suffix")).willReturn(null);
67 PowerMockito.mockStatic(SystemProperties.class);
68 given(SystemProperties.get("test-root-suffix")).willReturn(null);
82 PowerMockito.mockStatic(SystemProperties.class);
83 given(SystemProperties
[all...]
/forgerock/openam-v13/openam-core/src/test/java/com/iplanet/dpro/session/service/
H A DSessionServerConfigTest.java3 import com.iplanet.am.util.SystemProperties;
18 @PrepareForTest({ SystemProperties.class, WebtopNaming.class })
24 PowerMockito.mockStatic(SystemProperties.class);
25 given(SystemProperties.get(Constants.AM_SERVER_PROTOCOL)).willReturn("http");
26 given(SystemProperties.get(Constants.AM_SERVER_HOST)).willReturn("openam.example.com");
27 given(SystemProperties.get(Constants.AM_SERVER_PORT)).willReturn("8080");
28 given(SystemProperties.get(Constants.AM_SERVICES_DEPLOYMENT_DESCRIPTOR)).willReturn("/openam");
44 PowerMockito.mockStatic(SystemProperties.class);
45 given(SystemProperties.get(Constants.AM_SERVER_PROTOCOL)).willReturn("http");
46 given(SystemProperties
[all...]
/forgerock/openam/openam-core/src/test/java/com/iplanet/dpro/session/service/
H A DSessionServerConfigTest.java3 import com.iplanet.am.util.SystemProperties;
18 @PrepareForTest({ SystemProperties.class, WebtopNaming.class })
24 PowerMockito.mockStatic(SystemProperties.class);
25 given(SystemProperties.get(Constants.AM_SERVER_PROTOCOL)).willReturn("http");
26 given(SystemProperties.get(Constants.AM_SERVER_HOST)).willReturn("openam.example.com");
27 given(SystemProperties.get(Constants.AM_SERVER_PORT)).willReturn("8080");
28 given(SystemProperties.get(Constants.AM_SERVICES_DEPLOYMENT_DESCRIPTOR)).willReturn("/openam");
46 PowerMockito.mockStatic(SystemProperties.class);
47 given(SystemProperties.get(Constants.AM_SERVER_PROTOCOL)).willReturn("http");
48 given(SystemProperties
[all...]
/forgerock/openam/openam-core/src/main/java/com/iplanet/am/sdk/common/
H A DCacheBlock.java31 import com.iplanet.am.util.SystemProperties;
81 ENTRY_EXPIRATION_ENABLED_FLAG = SystemProperties.getAsBoolean(ENTRY_EXPIRATION_ENABLED_KEY, false);
84 ENTRY_USER_EXPIRE_TIME = SystemProperties.getAsInt(ENTRY_USER_EXPIRE_TIME_KEY, 15) * 60000;
85 ENTRY_DEFAULT_EXPIRE_TIME = SystemProperties.getAsInt(ENTRY_DEFAULT_EXPIRE_TIME_KEY, 30) * 60000;
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/sm/
H A DAuthenticationServiceNameProviderFactory.java31 import com.iplanet.am.util.SystemProperties;
77 String className = SystemProperties.get(
/forgerock/openam-v13/openam-core/src/main/java/org/forgerock/openam/sm/datalayer/impl/
H A DUmaAuditDataLayerConfiguration.java30 import com.iplanet.am.util.SystemProperties;
54 String mode = SystemProperties.get(STORE_LOCATION);
66 hosts.set(SystemProperties.get(STORE_HOSTNAME));
67 username.set(SystemProperties.get(STORE_USERNAME));
68 password.set(AMPasswordUtil.decrypt(SystemProperties.get(STORE_PASSWORD)));
69 maxConnections.set(SystemProperties.get(STORE_MAX_CONNECTIONS));
70 sslMode.set(SystemProperties.getAsBoolean(STORE_SSL_ENABLED, false));
71 heartbeat.set(SystemProperties.getAsInt(STORE_HEARTBEAT, -1));
H A DUmaPendingRequestDataLayerConfiguration.java23 import com.iplanet.am.util.SystemProperties;
53 String mode = SystemProperties.get(STORE_LOCATION);
65 hosts.set(SystemProperties.get(STORE_HOSTNAME));
66 username.set(SystemProperties.get(STORE_USERNAME));
67 password.set(AMPasswordUtil.decrypt(SystemProperties.get(STORE_PASSWORD)));
68 maxConnections.set(SystemProperties.get(STORE_MAX_CONNECTIONS));
69 sslMode.set(SystemProperties.getAsBoolean(STORE_SSL_ENABLED, false));
70 heartbeat.set(SystemProperties.getAsInt(STORE_HEARTBEAT, -1));
/forgerock/openam-v13/openam-oauth2/src/main/java/org/forgerock/openam/oauth2/resources/labels/
H A DLabelsDataLayerConfiguration.java30 import com.iplanet.am.util.SystemProperties;
45 String mode = SystemProperties.get(LabelsConstants.STORE_LOCATION);
57 hosts.set(SystemProperties.get(LabelsConstants.STORE_HOSTNAME));
58 username.set(SystemProperties.get(LabelsConstants.STORE_USERNAME));
59 password.set(AMPasswordUtil.decrypt(SystemProperties.get(LabelsConstants.STORE_PASSWORD)));
60 maxConnections.set(SystemProperties.get(LabelsConstants.STORE_MAX_CONNECTIONS));
61 sslMode.set(SystemProperties.getAsBoolean(LabelsConstants.STORE_SSL_ENABLED, false));
62 heartbeat.set(SystemProperties.getAsInt(LabelsConstants.STORE_HEARTBEAT, -1));
/forgerock/openam-v13/openam-console/src/main/java/com/sun/identity/console/base/
H A DAMConsoleConfig.java34 import com.iplanet.am.util.SystemProperties;
45 public static String CONSOLE_DEPLOYMENT_URI = SystemProperties.get(
47 public static String SERVER_DEPLOYMENT_URI = SystemProperties.get(
49 public static String SERVER_PROTOCOL = SystemProperties.get(
51 public static String SERVER_HOST = SystemProperties.get(
53 public static String SERVER_PORT = SystemProperties.get(
60 SystemProperties.get(Constants.AM_CONSOLE_REMOTE)).booleanValue();
63 SERVER_NAME = SystemProperties.get(Constants.AM_CONSOLE_HOST);

Completed in 62 milliseconds

1234567891011>>