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 2019/10/14 12:06:58 UTC

[syncope] branch master updated (8bbb5c9 -> 93630ce)

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

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


    from 8bbb5c9  Upgrading bcpkix-jdk15on, jacoco-maven-plugin, Swagger Code, Wicket jQueryUi
     new 9a5c17d  Adding details to Logic Actions and Templates
     new 93630ce  Upgrading H2 and Tomcat

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 pom.xml                                                | 4 ++--
 src/main/asciidoc/reference-guide/concepts/realms.adoc | 9 +++++++--
 2 files changed, 9 insertions(+), 4 deletions(-)


[syncope] 02/02: Upgrading H2 and Tomcat

Posted by il...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

ilgrosso pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/syncope.git

commit 93630ce8581299fe3d2dad886ead52e6494826d7
Author: Francesco Chicchiriccò <il...@apache.org>
AuthorDate: Mon Oct 14 14:04:30 2019 +0200

    Upgrading H2 and Tomcat
---
 pom.xml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/pom.xml b/pom.xml
index 47ca557..827a9b7 100644
--- a/pom.xml
+++ b/pom.xml
@@ -444,7 +444,7 @@ under the License.
 
     <joda.version>2.10.4</joda.version>
 
-    <h2.version>1.4.199</h2.version>
+    <h2.version>1.4.200</h2.version>
 
     <junit.version>5.5.2</junit.version>
 
@@ -512,7 +512,7 @@ under the License.
     <cargo.log>${log.directory}/cargo.log</cargo.log>
     <cargo.output>${log.directory}/cargo-output.log</cargo.output>
 
-    <tomcat.version>9.0.26</tomcat.version>
+    <tomcat.version>9.0.27</tomcat.version>
 
     <docker.postgresql.version>12</docker.postgresql.version>
     <docker.mysql.version>8.0</docker.mysql.version>


[syncope] 01/02: Adding details to Logic Actions and Templates

Posted by il...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

ilgrosso pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/syncope.git

commit 9a5c17d736f1bc7c79724960b6f52593cf48be9a
Author: Francesco Chicchiriccò <il...@apache.org>
AuthorDate: Mon Oct 14 13:57:00 2019 +0200

    Adding details to Logic Actions and Templates
---
 src/main/asciidoc/reference-guide/concepts/realms.adoc | 9 +++++++--
 1 file changed, 7 insertions(+), 2 deletions(-)

diff --git a/src/main/asciidoc/reference-guide/concepts/realms.adoc b/src/main/asciidoc/reference-guide/concepts/realms.adoc
index b79d075..2cd7554 100644
--- a/src/main/asciidoc/reference-guide/concepts/realms.adoc
+++ b/src/main/asciidoc/reference-guide/concepts/realms.adoc
@@ -62,6 +62,8 @@ As with <<pull-templates,pull>> it is also possible to add templates to a realm.
 
 The values specified in the template are applied to entities belonging to that realm, hence this can be used as
 a mechanism for setting default values for attributes or external resources on entities.
+
+Logic Templates apply to all operations passing through the <<logic,logic layer>>, e.g. triggered by REST requests.
 ====
 
 ==== Realm Provisioning
@@ -73,8 +75,8 @@ with LDAP and Active Directory.
 
 ==== LogicActions
 
-When Users, Groups or Any Objects get created, updated or deleted in a realm, custom logic can be invoked by
-associating the given realm with one or more <<implementations,implementations>> of the
+When Users, Groups or Any Objects get created, updated or deleted in a realm, custom logic can be invoked
+by associating the given Realm with one or more <<implementations,implementations>> of the
 ifeval::["{snapshotOrRelease}" == "release"]
 https://github.com/apache/syncope/blob/syncope-{docVersion}/core/provisioning-api/src/main/java/org/apache/syncope/core/provisioning/api/LogicActions.java[LogicActions^]
 endif::[]
@@ -82,3 +84,6 @@ ifeval::["{snapshotOrRelease}" == "snapshot"]
 https://github.com/apache/syncope/blob/master/core/provisioning-api/src/main/java/org/apache/syncope/core/provisioning/api/LogicActions.java[LogicActions^]
 endif::[]
 interface.
+
+[NOTE]
+LogicActions apply to all operations passing through the <<logic,logic layer>>, e.g. triggered by REST requests.