Searched refs:newConfig (Results 1 - 25 of 50) sorted by relevance

12

/forgerock/openam/openam-push-notification/src/main/java/org/forgerock/openam/services/push/
H A DPushNotificationDelegate.java56 * @param newConfig The new configuration to check against the old.
60 boolean isRequireNewDelegate(PushNotificationServiceConfig newConfig); argument
67 * @param newConfig The new config from which to update the existing delegate.
69 void updateDelegate(PushNotificationServiceConfig newConfig); argument
/forgerock/openidm-v4/openidm-config/src/main/java/org/forgerock/openidm/config/installer/
H A DDelayedConfig.java44 public Dictionary newConfig; field in class:DelayedConfig
H A DDelayedConfigHandler.java76 config.configInstaller.setConfig(config.newConfig, new String[] {config.pidOrFactory, config.factoryAlias}, config.file);
/forgerock/openam-v13/openam-upgrade/src/main/java/org/forgerock/openam/upgrade/steps/
H A DRemoveNetscapeLDAPStep.java170 Map<String, Set<String>> newConfig = new HashMap<>();
174 copyAttribute(oldConfig, newConfig, "sun-idrepo-ldapv3-ldapv3Generic");
175 copyAttribute(oldConfig, newConfig, "sun-idrepo-ldapv3-ldapv3AMDS");
176 copyAttribute(oldConfig, newConfig, "sun-idrepo-ldapv3-ldapv3OpenDS");
177 copyAttribute(oldConfig, newConfig, "sun-idrepo-ldapv3-ldapv3Tivoli");
178 copyAttribute(oldConfig, newConfig, "sun-idrepo-ldapv3-ldapv3AD");
179 copyAttribute(oldConfig, newConfig, "sun-idrepo-ldapv3-ldapv3ADAM");
181 if (newConfig.size() != 1) {
182 DEBUG.error("ID Repo {} in realm {} has types: ", configName, realmConfig.getKey(), newConfig);
186 String typeString = newConfig
214 copyAttribute(Map<String, Set<String>> config, Map<String, Set<String>> newConfig, String attributeName) argument
[all...]
/forgerock/openam/openam-upgrade/src/main/java/org/forgerock/openam/upgrade/steps/
H A DRemoveNetscapeLDAPStep.java170 Map<String, Set<String>> newConfig = new HashMap<>();
174 copyAttribute(oldConfig, newConfig, "sun-idrepo-ldapv3-ldapv3Generic");
175 copyAttribute(oldConfig, newConfig, "sun-idrepo-ldapv3-ldapv3AMDS");
176 copyAttribute(oldConfig, newConfig, "sun-idrepo-ldapv3-ldapv3OpenDS");
177 copyAttribute(oldConfig, newConfig, "sun-idrepo-ldapv3-ldapv3Tivoli");
178 copyAttribute(oldConfig, newConfig, "sun-idrepo-ldapv3-ldapv3AD");
179 copyAttribute(oldConfig, newConfig, "sun-idrepo-ldapv3-ldapv3ADAM");
181 if (newConfig.size() != 1) {
182 DEBUG.error("ID Repo {} in realm {} has types: ", configName, realmConfig.getKey(), newConfig);
186 String typeString = newConfig
214 copyAttribute(Map<String, Set<String>> config, Map<String, Set<String>> newConfig, String attributeName) argument
[all...]
/forgerock/openidm-v4/openidm-ui/openidm-ui-admin/src/main/js/org/forgerock/openidm/ui/admin/settings/authentication/
H A DAuthenticationModuleDialogView.js396 newConfig = {},
399 newConfig.name = this.model.config.name;
400 newConfig.enabled = editorValues.enabled;
401 newConfig.properties = {};
402 newConfig.properties.propertyMapping = {};
404 if (newConfig.name === "OPENAM_SESSION") {
419 newConfig.properties[key] = property;
424 newConfig.properties[customProperty.propertyName] = customProperty.propertyType;
429 newConfig.properties.propertyMapping[key] = property;
432 newConfig
[all...]
/forgerock/openam/openam-core/src/test/java/org/forgerock/openam/sso/providers/stateless/
H A DJwtSessionMapperConfigTest.java66 JwtSessionMapper result = newConfig(mapOf(COMPRESSION_TYPE, "DEF", ENCRYPTION_ALGORITHM, "NONE",
73 JwtSessionMapper result = newConfig(mapOf(ENCRYPTION_ALGORITHM, "NONE", SIGNING_ALGORITHM, "HS256",
80 JwtSessionMapper result = newConfig(mapOf(COMPRESSION_TYPE, "NONE", ENCRYPTION_ALGORITHM, "RSA",
89 JwtSessionMapper result = newConfig(mapOf(COMPRESSION_TYPE, "NONE", ENCRYPTION_ALGORITHM, "DIRECT",
99 JwtSessionMapper result = newConfig(mapOf(COMPRESSION_TYPE, "NONE", ENCRYPTION_ALGORITHM, "AES_KEYWRAP",
108 JwtSessionMapper result = newConfig(mapOf(COMPRESSION_TYPE, "NONE", ENCRYPTION_ALGORITHM, "NONE",
121 JwtSessionMapper result = newConfig(mapOf(COMPRESSION_TYPE, "NONE", ENCRYPTION_ALGORITHM, "NONE",
130 JwtSessionMapper result = newConfig(mapOf(COMPRESSION_TYPE, "NONE", ENCRYPTION_ALGORITHM, "NONE",
172 private JwtSessionMapperConfig newConfig(Map config) { method in class:JwtSessionMapperConfigTest
/forgerock/openam/openam-push-notification/src/main/java/org/forgerock/openam/services/push/sns/
H A DSnsHttpDelegate.java73 public boolean isRequireNewDelegate(PushNotificationServiceConfig newConfig) { argument
74 return !newConfig.equals(config);
78 public void updateDelegate(PushNotificationServiceConfig newConfig) { argument
/forgerock/opendj2/tests/unit-tests-testng/src/server/org/opends/server/replication/service/
H A DFakeStressReplicationDomain.java61 super(newConfig(baseDN, serverID, replicationServers, heartbeatInterval), 1);
67 private static DomainFakeCfg newConfig(DN baseDN, int serverID, method in class:FakeStressReplicationDomain
H A DFakeReplicationDomain.java72 super(newConfig(baseDN, serverID, replicationServers, window, heartbeatInterval), generationId);
77 private static DomainFakeCfg newConfig(DN baseDN, int serverID, method in class:FakeReplicationDomain
/forgerock/opendj2-hg/tests/unit-tests-testng/src/server/org/opends/server/replication/service/
H A DFakeStressReplicationDomain.java61 super(newConfig(baseDN, serverID, replicationServers, heartbeatInterval), 1);
67 private static DomainFakeCfg newConfig(DN baseDN, int serverID, method in class:FakeStressReplicationDomain
H A DFakeReplicationDomain.java72 super(newConfig(baseDN, serverID, replicationServers, window, heartbeatInterval), generationId);
77 private static DomainFakeCfg newConfig(DN baseDN, int serverID, method in class:FakeReplicationDomain
/forgerock/opendj-v3/opendj-server-legacy/src/test/java/org/opends/server/replication/service/
H A DFakeStressReplicationDomain.java61 super(newConfig(baseDN, serverID, replicationServers, heartbeatInterval), 1);
67 private static DomainFakeCfg newConfig(DN baseDN, int serverID, method in class:FakeStressReplicationDomain
H A DFakeReplicationDomain.java72 super(newConfig(baseDN, serverID, replicationServers, window, heartbeatInterval), generationId);
77 private static DomainFakeCfg newConfig(DN baseDN, int serverID, method in class:FakeReplicationDomain
/forgerock/openidm-v4/openidm-repo-jdbc/src/main/java/org/forgerock/openidm/datasource/jdbc/impl/
H A DJDBCDataSourceService.java199 JsonValue newConfig = enhancedConfig.getConfigurationAsJson(compContext);
200 if (hasConfigChanged(config, newConfig)) {
216 * @param newConfig the new configuration object
219 private boolean hasConfigChanged(JsonValue existingConfig, JsonValue newConfig) { argument
220 return JsonPatch.diff(existingConfig, newConfig).size() > 0;
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/loggers/
H A DTextHTTPAccessLogPublisher.java233 private boolean hasAsyncConfigChanged(FileBasedHTTPAccessLogPublisherCfg newConfig) argument
235 return hasParallelConfigChanged(newConfig) && cfg.getQueueSize() != newConfig.getQueueSize();
238 private boolean hasParallelConfigChanged(FileBasedHTTPAccessLogPublisherCfg newConfig) argument
240 return !cfg.dn().equals(newConfig.dn()) && cfg.isAutoFlush() != newConfig.isAutoFlush();
H A DTextAuditLogPublisher.java163 private boolean hasAsyncConfigChanged(FileBasedAuditLogPublisherCfg newConfig) argument
165 return !cfg.dn().equals(newConfig.dn())
166 && cfg.isAutoFlush() != newConfig.isAutoFlush()
167 && cfg.getQueueSize() != newConfig.getQueueSize();
H A DTextDebugLogPublisher.java319 private boolean hasAsyncConfigChanged(FileBasedDebugLogPublisherCfg newConfig) argument
321 return !currentConfig.dn().equals(newConfig.dn())
322 && currentConfig.isAutoFlush() != newConfig.isAutoFlush()
323 && currentConfig.getQueueSize() != newConfig.getQueueSize();
H A DTextErrorLogPublisher.java396 private boolean hasAsyncConfigChanged(FileBasedErrorLogPublisherCfg newConfig) argument
398 return !currentConfig.dn().equals(newConfig.dn())
399 && currentConfig.isAutoFlush() != newConfig.isAutoFlush()
400 && currentConfig.getQueueSize() != newConfig.getQueueSize();
H A DCommonAudit.java208 * @param newConfig
213 public void addOrUpdatePublisher(final LogPublisherCfg newConfig) throws ConfigException argument
215 if (newConfig.isEnabled())
217 logger.trace(String.format("Setting up common audit for configuration entry: %s", newConfig.dn()));
220 final PublisherConfig newPublisher = new PublisherConfig(newConfig);
221 String normalizedName = getConfigNormalizedName(newConfig);
246 throw new ConfigException(ERR_COMMON_AUDIT_ADD_OR_UPDATE_LOG_PUBLISHER.get(newConfig.dn(), e), e);
H A DTextAccessLogPublisher.java266 private boolean hasAsyncConfigChanged(FileBasedAccessLogPublisherCfg newConfig) argument
268 return hasParallelConfigChanged(newConfig) && cfg.getQueueSize() != newConfig.getQueueSize();
271 private boolean hasParallelConfigChanged(FileBasedAccessLogPublisherCfg newConfig) argument
273 return !cfg.dn().equals(newConfig.dn()) && cfg.isAutoFlush() != newConfig.isAutoFlush();
/forgerock/openidm-v4/openidm-repo-orientdb/src/main/java/org/forgerock/openidm/repo/orientdb/impl/
H A DOrientDBRepoService.java926 JsonValue newConfig = null;
928 newConfig = enhancedConfig.getConfigurationAsJson(compContext);
934 && !existingConfig.get("embeddedServer").equals(newConfig.get("embeddedServer"))) {
936 embeddedServer.modified(newConfig);
939 && user.equals(getUser(newConfig))
940 && password.equals(getPassword(newConfig))
941 && dbURL.equals(getDBUrl(newConfig))
942 && poolMinSize == getPoolMinSize(newConfig)
943 && poolMaxSize == getPoolMaxSize(newConfig)) {
951 init(newConfig);
[all...]
/forgerock/openidm-v4/openidm-config/src/main/java/org/forgerock/openidm/config/crypto/
H A DConfigCrypto.java152 public Dictionary encrypt(String pidOrFactory, String instanceAlias, Dictionary existingConfig, JsonValue newConfig) argument
155 JsonValue parsed = newConfig;
/forgerock/opendj2/src/quicksetup/org/opends/quicksetup/installer/offline/
H A DOfflineInstaller.java374 File newConfig = fm.copy(installation.getBaseConfigurationFile(),
377 fm.rename(newConfig, installation.getCurrentConfigurationFile());
/forgerock/opendj-b2.6/src/quicksetup/org/opends/quicksetup/installer/offline/
H A DOfflineInstaller.java376 File newConfig = fm.copy(installation.getBaseConfigurationFile(),
379 fm.rename(newConfig, installation.getCurrentConfigurationFile());

Completed in 59 milliseconds

12