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/10 06:00:09 UTC

[isis] branch ISIS-2502-ex.recog updated (a9b56fb -> 60f7b46)

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

ahuber pushed a change to branch ISIS-2502-ex.recog
in repository https://gitbox.apache.org/repos/asf/isis.git.


 discard a9b56fb  ISIS-2502: removes ex. translation logic from TransactionService
 discard 7cd7378  ISIS-2502: fixes JDO integration translating a unique constraint violation exception as too generic
 discard 3e56d02  ISIS-2502: workaround for  Eclipselink low level exception translation issue
 discard 9bcdec9  ISIS-2520: JDO Spring Integration README update
     add fc7e9e5  ISIS-2444: docs; moves nested classes out of ExceptionRecognizer so that they can be more easily referenced.
     add 0887daa  ISIS-2444: more docs for domain services.
     add b025d04  ISIS-2520: JDO Spring Integration README update
     add 18e4347  ISIS-2502: workaround for  Eclipselink low level exception translation issue
     add 5d7448d  ISIS-2502: fixes JDO integration translating a unique constraint violation exception as too generic
     add 60f7b46  ISIS-2502: removes ex. translation logic from TransactionService

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   (a9b56fb)
            \
             N -- N -- N   refs/heads/ISIS-2502-ex.recog (60f7b46)

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:
 .../applib/services/eventbus/EventBusService.adoc  |  17 +-
 .../services/exceprecog/ExceptionRecognizer.adoc   |   6 +-
 .../exceprecog/ExceptionRecognizerService.adoc     |   2 +
 .../publishing/spi/EntityChangesSubscriber.adoc    |  10 +-
 .../spi/EntityPropertyChangeSubscriber.adoc        |  10 +-
 .../modules/generated/pages/system-overview.adoc   | 249 ++++-----------------
 .../hooks/examples_and_usage.adoc                  |   3 +
 .../hooks/examples_and_usage.adoc                  |   3 +
 .../EventBusService/hooks/examples_and_usage.adoc  |  18 +-
 .../applib-svc/pages/ExceptionRecognizer.adoc      | 130 +----------
 .../hooks/examples_and_usage.adoc                  |  21 ++
 .../ExceptionRecognizer/hooks/implementation.adoc  |  51 +++++
 .../pages/ExceptionRecognizerService.adoc          |  30 +--
 .../hooks/implementation.adoc                      |   2 +
 .../applib-svc/pages/ExecutionSubscriber.adoc      | 143 +-----------
 .../hooks/examples_and_usage.adoc                  |  31 +++
 .../ExecutionSubscriber/hooks/implementation.adoc  |  26 ++-
 .../modules/applib-svc/pages/FactoryService.adoc   |  74 +-----
 .../FactoryService/hooks/examples_and_usage.adoc   |  30 +++
 .../pages/FactoryService/hooks/implementation.adoc |   2 +
 .../applib-svc/pages/GridLoaderService.adoc        |  44 +---
 .../GridLoaderService/hooks/implementation.adoc    |   6 +-
 .../isis/applib/services/command/Command.java      |  19 +-
 .../applib/services/eventbus/EventBusService.java  |  11 +
 .../isis/applib/services/exceprecog/Category.java  |  45 ++++
 .../services/exceprecog/ExceptionRecognizer.java   | 115 +---------
 .../exceprecog/ExceptionRecognizerService.java     |   4 +-
 .../applib/services/exceprecog/Recognition.java    | 120 ++++++++++
 .../applib/services/factory/FactoryService.java    |  15 ++
 .../applib/services/grid/GridLoaderService.java    |  27 ++-
 .../services/publishing/spi/EntityChanges.java     |  63 +++++-
 .../publishing/spi/EntityChangesSubscriber.java    |  29 ++-
 .../spi/EntityPropertyChangeSubscriber.java        |  24 +-
 .../publishing/spi/ExecutionSubscriber.java        |  47 +++-
 build-tooling.sh                                   |  32 +++
 ...ExceptionRecognizerForRecoverableException.java |   5 +-
 .../ExceptionRecognizerServiceDefault.java         |  30 +--
 .../ExceptionRecognizerForDataAccessException.java |   5 +-
 .../ExceptionRecognizerForDataAlreadyExists.java   |  11 +-
 .../impl/ExceptionRecognizerForObjectNotFound.java |   5 +-
 ...ceptionRecognizerForOtherDataAccessProblem.java |  19 +-
 .../ExceptionRecognizerForRelatedDataExists.java   |   5 +-
 .../ExceptionRecognizerForUnableToSaveData.java    |   3 +-
 .../metamodel/facets/entity/JdoEntityFacet.java    |   3 +-
 preview.sh                                         |  10 +-
 stty.exe.stackdump                                 |  11 +
 .../viewer/wicket/ui/errors/ExceptionModel.java    |  22 +-
 .../wicket/ui/panels/FormExecutorDefault.java      |  53 +++--
 .../viewer/integration/WebRequestCycleForIsis.java |  44 ++--
 49 files changed, 809 insertions(+), 876 deletions(-)
 create mode 100644 api/applib/src/main/java/org/apache/isis/applib/services/exceprecog/Category.java
 create mode 100644 api/applib/src/main/java/org/apache/isis/applib/services/exceprecog/Recognition.java
 create mode 100644 build-tooling.sh
 create mode 100644 stty.exe.stackdump