-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adapt demo/complex2s to latest perf improvements
The processing path of Grouper groups was significantly changed: Instead of pushing member information through ShadowType to OrgType we keep it only in ShadowType (in index-only form). Auto-updating users after membership change is currently disabled.
- Loading branch information
Showing
4 changed files
with
131 additions
and
52 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
64 changes: 64 additions & 0 deletions
64
demo/complex2s/midpoint_server/container_files/mp-home/config.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,64 @@ | ||
| <?xml version="1.0"?> | ||
| <!-- | ||
| ~ Copyright (c) 2010-2017 Evolveum | ||
| ~ | ||
| ~ Licensed under the Apache License, Version 2.0 (the "License"); | ||
| ~ you may not use this file except in compliance with the License. | ||
| ~ You may obtain a copy of the License at | ||
| ~ | ||
| ~ http://www.apache.org/licenses/LICENSE-2.0 | ||
| ~ | ||
| ~ Unless required by applicable law or agreed to in writing, software | ||
| ~ distributed under the License is distributed on an "AS IS" BASIS, | ||
| ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
| ~ See the License for the specific language governing permissions and | ||
| ~ limitations under the License. | ||
| --> | ||
| <configuration> | ||
| <midpoint> | ||
| <webApplication> | ||
| <importFolder>${midpoint.home}/import</importFolder> | ||
| </webApplication> | ||
| <repository> | ||
| <repositoryServiceFactoryClass>com.evolveum.midpoint.repo.sql.SqlRepositoryFactory</repositoryServiceFactoryClass> | ||
| <baseDir>${midpoint.home}</baseDir> | ||
| <asServer>true</asServer> | ||
| <enableIndexOnlyItems>true</enableIndexOnlyItems> | ||
| <enableNoFetchExtensionValuesInsertion>true</enableNoFetchExtensionValuesInsertion> | ||
| <enableNoFetchExtensionValuesDeletion>true</enableNoFetchExtensionValuesDeletion> | ||
| </repository> | ||
| <audit> | ||
| <auditService> | ||
| <auditServiceFactoryClass>com.evolveum.midpoint.audit.impl.LoggerAuditServiceFactory</auditServiceFactoryClass> | ||
| </auditService> | ||
| <auditService> | ||
| <auditServiceFactoryClass>com.evolveum.midpoint.repo.sql.SqlAuditServiceFactory</auditServiceFactoryClass> | ||
| </auditService> | ||
| </audit> | ||
| <icf> | ||
| <scanClasspath>true</scanClasspath> | ||
| <scanDirectory>${midpoint.home}/icf-connectors</scanDirectory> | ||
| </icf> | ||
| <keystore> | ||
| <keyStorePath>${midpoint.home}/keystore.jceks</keyStorePath> | ||
| <keyStorePassword>changeit</keyStorePassword> | ||
| <encryptionKeyAlias>default</encryptionKeyAlias> | ||
| <!-- | ||
| You can use smaller cipher key size for encryption. For: | ||
| AES_128 "http://www.w3.org/2001/04/xmlenc#aes128-cbc"; | ||
| AES_256 "http://www.w3.org/2001/04/xmlenc#aes256-cbc"; | ||
| AES_192 "http://www.w3.org/2001/04/xmlenc#aes192-cbc"; | ||
| in element <xmlCipher></xmlCipher> | ||
| By default AES_128 is used. If you change key size, than | ||
| you must also create secret key in key store with proper key size and change encryptionKeyAlias. | ||
| To generate keystore with keytool use command: | ||
| keytool -genseckey -alias default -keystore keystore.jceks -storetype jceks -keyalg AES -keysize 128 | ||
| secret key password is by default 'midpoint' | ||
| --> | ||
| </keystore> | ||
| <!-- <profilingMode>dynamic</profilingMode> --> | ||
| </midpoint> | ||
| </configuration> |