Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
console.realms-full-tree-threshold=20

wa.properties

Remove

Code Block
cas.authn.syncope.url=${cas.server.name}/syncope
cas.authn.syncope.name=DefaultSyncopeAuthModule

MasterContent.xml

Note

The changes described below are only needed when starting with an empty Internal Storage.

  • Re-generate the following elements:
    • AttrReleasePolicy
    • AuthModule
    • AttrRepo
  • Realm: add fullPath attribute
  • ConnInstance
    • net.tirasa.connid.bundles.db.tablenet.tirasa.connid.bundles.db
    • net.tirasa.connid.bundles.db.scriptedsqlnet.tirasa.connid.bundles.db
    • connid.database.versionconnid.db.version
  • Add Implementation as follows:

    Code Block
    languagexml
    <Implementation id="GenerateRandomPasswordPropagationActions" type="PROPAGATION_ACTIONS" engine="JAVA"
                    body="org.apache.syncope.core.provisioning.java.propagation.GenerateRandomPasswordPropagationActions"/>


  • ExternalResource
    • remove randomPwdIfNotProvided attribute
    • add ExternalResourcePropAction element with implementation_id="GenerateRandomPasswordPropagationActions"
  • Remove the following elements and re-generate after defining Report(s) in the new format:
    • ReportTemplate
    • Report
    • ReportReportlet
    • Implementation[@type='REPORTLET']
  • Change any occurrence of REALM_LIST with REALM_SEARCH

Internal Storage

New indexes shall be created to improve overall performance.

PostgreSQL

CREATE INDEX Realm_parent_id ON Realm(parent_id);
CREATE INDEX Realm_fullPath ON Realm(fullPath)
;
CREATE INDEX Realm_fullPath_startsWith ON Realm USING GIN (to_tsvector('english', fullPath));

Oracle | MySQL | MariaDB

CREATE INDEX Realm_parent_id ON Realm(parent_id);
CREATE INDEX Realm_fullPath ON Realm(fullPath)
;