You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@isis.apache.org by ah...@apache.org on 2021/02/12 17:42:20 UTC

[isis] branch master updated (2c468cd -> 5a5afc7)

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

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


    from 2c468cd  Merge pull request #375 from apache/dependabot/maven/com.fasterxml.woodstox-woodstox-core-6.2.4
     add e1b9e2e  ISIS-2502: housekeeping
     add 101f9c4  ISIS-2502: Add a new Category RETRYABLE
     add e20de3c  ISIS-2502: Implement the actual Exception Recognizer for DAE
     add ff93bd8  ISIS-2502: provide a more friendly message to the UI
     add f57dfd5  ISIS-2502: fixing test
     add 1ced05b  ISIS-2502: on failed interaction only log the root cause
     new 5a5afc7  Merge pull request #376 from apache/ISIS-2502-ex.recog

The 1 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:
 .../isis/applib/services/exceprecog/Category.java  |   8 ++
 .../applib/services/exceprecog/Recognition.java    |   4 +-
 .../core/interaction/session/IsisInteraction.java  |   3 +-
 .../IsisModuleCoreRuntimeServices.java             |  12 +--
 .../ExceptionRecognizerForDataAccessException.java | 113 ++++++++++++++++-----
 .../ExceptionRecognizerForDataAlreadyExists.java   |  57 -----------
 .../impl/ExceptionRecognizerForObjectNotFound.java |  52 ----------
 ...ceptionRecognizerForOtherDataAccessProblem.java |  82 ---------------
 .../ExceptionRecognizerForRelatedDataExists.java   |  52 ----------
 .../ExceptionRecognizerForUnableToSaveData.java    |  52 ----------
 ...eptionRecognizerForDataAccessExceptionTest.java |  90 ++++++----------
 .../persistence/jdo/_JdoExceptionTranslator.java   |   2 +-
 .../persistence/jpa/_JpaExceptionTranslator.java   |   2 +-
 13 files changed, 136 insertions(+), 393 deletions(-)
 delete mode 100644 core/runtimeservices/src/main/java/org/apache/isis/core/runtimeservices/recognizer/dae/impl/ExceptionRecognizerForDataAlreadyExists.java
 delete mode 100644 core/runtimeservices/src/main/java/org/apache/isis/core/runtimeservices/recognizer/dae/impl/ExceptionRecognizerForObjectNotFound.java
 delete mode 100644 core/runtimeservices/src/main/java/org/apache/isis/core/runtimeservices/recognizer/dae/impl/ExceptionRecognizerForOtherDataAccessProblem.java
 delete mode 100644 core/runtimeservices/src/main/java/org/apache/isis/core/runtimeservices/recognizer/dae/impl/ExceptionRecognizerForRelatedDataExists.java
 delete mode 100644 core/runtimeservices/src/main/java/org/apache/isis/core/runtimeservices/recognizer/dae/impl/ExceptionRecognizerForUnableToSaveData.java


[isis] 01/01: Merge pull request #376 from apache/ISIS-2502-ex.recog

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

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

commit 5a5afc7f32b934d565f44fa21e66015a5a6741db
Merge: 2c468cd 1ced05b
Author: Andi Huber <ah...@apache.org>
AuthorDate: Fri Feb 12 18:42:10 2021 +0100

    Merge pull request #376 from apache/ISIS-2502-ex.recog
    
    ISIS-2502: implement a single Ex. Recog. for Spring's DAE hierarchy
    
    There is a followup issue:
    Rendering glitch after confirming a recognized ex. in the UI when using Wicket+JPA (Object details are not visible)

 .../isis/applib/services/exceprecog/Category.java  |   8 ++
 .../applib/services/exceprecog/Recognition.java    |   4 +-
 .../core/interaction/session/IsisInteraction.java  |   3 +-
 .../IsisModuleCoreRuntimeServices.java             |  12 +--
 .../ExceptionRecognizerForDataAccessException.java | 113 ++++++++++++++++-----
 .../ExceptionRecognizerForDataAlreadyExists.java   |  57 -----------
 .../impl/ExceptionRecognizerForObjectNotFound.java |  52 ----------
 ...ceptionRecognizerForOtherDataAccessProblem.java |  82 ---------------
 .../ExceptionRecognizerForRelatedDataExists.java   |  52 ----------
 .../ExceptionRecognizerForUnableToSaveData.java    |  52 ----------
 ...eptionRecognizerForDataAccessExceptionTest.java |  90 ++++++----------
 .../persistence/jdo/_JdoExceptionTranslator.java   |   2 +-
 .../persistence/jpa/_JpaExceptionTranslator.java   |   2 +-
 13 files changed, 136 insertions(+), 393 deletions(-)