You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@syncope.apache.org by il...@apache.org on 2020/04/10 07:20:23 UTC

[syncope] branch SYNCOPE-160 updated (216e2e1 -> 93a5630)

This is an automated email from the ASF dual-hosted git repository.

ilgrosso pushed a change to branch SYNCOPE-160
in repository https://gitbox.apache.org/repos/asf/syncope.git.


 discard 216e2e1  [SYNCOPE-160] WA service refactoring
 discard fb52d60  [SYNCOPE-160] RegisteredClientApp service for WA
 discard 4b181f8  [SYNCOPE-160] Access, Auth and AttrRelease policies
 discard f840d8c  [SYNCOPE-1545] allow wa to lazy-load application context by scheduling a quartz job to retry/refresh the context after startup
 discard e298277  [SYNCOPE-1545] ClientApp service
 discard 426fe22  [SYNCOPE-160] AuthModule service
 discard b433ddf  [SYNCOPE-160] Preliminary settings
     add a1d97ec  Upgrading Tomcat
     add 1767f59  [SYNCOPE-160] Preliminary settings
     add 472cb6b  [SYNCOPE-160] AuthModule service
     add c8cb482  [SYNCOPE-1545] ClientApp service
     add 584c986  [SYNCOPE-1545] allow wa to lazy-load application context by scheduling a quartz job to retry/refresh the context after startup
     add aa968a7  [SYNCOPE-160] Access, Auth and AttrRelease policies
     add 2b9bc08  [SYNCOPE-160] RegisteredClientApp service for WA
     add a3f9ff7  [SYNCOPE-160] WA service refactoring
     add 93a5630  [SYNCOPE-160] Adding missing support for AuthModule items

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (216e2e1)
            \
             N -- N -- N   refs/heads/SYNCOPE-160 (93a5630)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

No new revisions were added by this update.

Summary of changes:
 .../commons/IdMImplementationInfoProvider.java     |   8 +-
 .../resources/ItemTransformersTogglePanel.java     |   4 +-
 .../commons/IdRepoImplementationInfoProvider.java  |   4 +
 .../apache/syncope/common/lib/to/AuthModuleTO.java |  26 ++---
 .../common/lib/types/AMImplementationType.java     |  15 ++-
 .../common/rest/api/service/AuthModuleService.java |  12 +--
 .../common/lib/types/IdMImplementationType.java    |  13 +--
 .../common/lib/types/IdRepoImplementationType.java |   5 +-
 .../init/ClassPathScanImplementationLookup.java    |   4 +-
 .../syncope/core/logic/ImplementationLogic.java    |   2 +-
 .../init/ClassPathScanImplementationLookup.java    |   2 +-
 .../persistence/api/entity/auth/AuthModule.java    |  14 +--
 .../api/entity/auth/AuthModuleItem.java            |   3 +
 .../src/test/resources/domains/MasterContent.xml   |   8 +-
 .../persistence/jpa/dao/auth/JPAAuthModuleDAO.java |  16 ++--
 .../persistence/jpa/entity/auth/JPAAuthModule.java |  18 ++--
 .../jpa/entity/auth/JPAAuthModuleItem.java         |  31 +++++-
 .../jpa/entity/policy/JPAAccessPolicy.java         |   2 +-
 .../jpa/entity/policy/JPAAttrReleasePolicy.java    |   2 +-
 .../jpa/entity/policy/JPAAuthPolicy.java           |   2 +-
 .../jpa/entity/resource/JPAMappingItem.java        |   4 +-
 .../jpa/entity/resource/JPAOrgUnitItem.java        |   4 +-
 .../jpa/inner/AbstractClientAppTest.java           |   6 +-
 .../core/persistence/jpa/inner/AuthModuleTest.java |  44 ++++-----
 .../persistence/jpa/inner/ImplementationTest.java  |   4 +-
 .../core/persistence/jpa/inner/PolicyTest.java     |   6 +-
 .../src/test/resources/domains/MasterContent.xml   |   8 +-
 .../java/data/AuthModuleDataBinderImpl.java        |  99 +++++++++++++++----
 .../java/data/ImplementationDataBinderImpl.java    |  14 +--
 .../jpa/entity/JPAOIDCProviderItem.java            |   4 +-
 .../java/data/OIDCProviderDataBinderImpl.java      | 105 +++++++--------------
 .../core/persistence/jpa/dao/JPASAML2IdPDAO.java   |   1 -
 .../persistence/jpa/entity/JPASAML2IdPItem.java    |   4 +-
 .../java/data/SAML2IdPDataBinderImpl.java          | 104 +++++++-------------
 .../fit/core/reference/ITImplementationLookup.java |   2 +-
 .../apache/syncope/fit/core/AuthModuleITCase.java  |  35 +++----
 .../org/apache/syncope/fit/core/PolicyITCase.java  |  24 ++---
 .../syncope/fit/core/PropagationTaskITCase.java    |  10 +-
 .../apache/syncope/fit/core/PullTaskITCase.java    |   5 +-
 .../org/apache/syncope/fit/core/RealmITCase.java   |   6 +-
 .../view/ResourceExplorerTopComponent.java         |   2 +-
 pom.xml                                            |   2 +-
 42 files changed, 333 insertions(+), 351 deletions(-)