This is an automated email from the ASF dual-hosted git repository.
danhaywood pushed a change to branch maintenance-branch
in repository https://gitbox.apache.org/repos/asf/causeway.git
from 44886cdb92a Merge pull request #2932 from apache/CAUSEWAY-3886
add 34b360bc20b CAUSEWAY-3883: updates docs a little
add a6a16c01547 CAUSEWAY-3883: updates more javadoc
add a3769a845a2 CAUSEWAY-3883: improves javadoc some more
add 65d64cd85b7 CAUSEWAY-3883: testing
new 99aa1bfbae2 Merge pull request #2926 from apache/CAUSEWAY-3883
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:
.../internal/proxy/_ProxyFactoryService.java | 2 +
.../services/ProxyFactoryServiceByteBuddy.java | 74 ++++-
.../metamodel/context/HasMetaModelContext.java | 5 +
.../context/MetaModelContext_usingSpring.java | 5 +
.../specloader/specimpl/ObjectMemberAbstract.java | 5 -
.../runtimeservices/src/main/java/module-info.java | 1 +
.../InvocationHandlerForAsyncWrapMixin.java | 112 +++++++
.../wrapper/InvocationHandlerforAsyncAbstract.java | 163 +++++++++++
.../InvocationHandlerforAsyncWrapRegular.java | 101 +++++++
.../runtimeservices/wrapper/MemberAndTarget.java | 64 ++++
.../wrapper/WrapperFactoryDefault.java | 321 ++++-----------------
.../handlers/CollectionInvocationHandler.java | 3 +-
.../handlers/DelegatingInvocationHandler.java | 6 +-
...va => DelegatingInvocationHandlerAbstract.java} | 67 ++---
.../handlers/DomainObjectInvocationHandler.java | 243 ++++++++--------
.../wrapper/handlers/MapInvocationHandler.java | 3 +-
.../handlers/PluralInvocationHandlerAbstract.java | 26 +-
.../wrapper/handlers/ProxyContextHandler.java | 70 +++--
.../wrapper/handlers/WrapperInvocationContext.java | 74 +++++
.../wrapper/proxy/ProxyCreator.java | 6 +-
.../wrapper/WrapperFactoryDefaultTest.java | 7 +-
.../proxy/ProxyCreatorTestUsingCodegenPlugin.java | 10 +-
enhance.sh | 24 +-
.../BackgroundService_IntegTestAbstract.java | 4 +-
.../testdomain/jpa/JpaInventoryManager.java | 4 +
...st.java => WrapperInteraction_1_IntegTest.java} | 8 +-
...t2.java => WrapperInteraction_2_IntegTest.java} | 8 +-
...t3.java => WrapperInteraction_3_IntegTest.java} | 8 +-
...t4.java => WrapperInteraction_4_IntegTest.java} | 8 +-
.../WrapperInteraction_Caching_IntegTest.java | 144 +++++++++
.../wrapper/jdo/JpaWrapperSyncTest.java} | 37 ++-
.../jdo/WrapperFactoryMetaspaceMemoryLeakTest.java | 111 +++++++
32 files changed, 1183 insertions(+), 541 deletions(-)
create mode 100644
core/runtimeservices/src/main/java/org/apache/causeway/core/runtimeservices/wrapper/InvocationHandlerForAsyncWrapMixin.java
create mode 100644
core/runtimeservices/src/main/java/org/apache/causeway/core/runtimeservices/wrapper/InvocationHandlerforAsyncAbstract.java
create mode 100644
core/runtimeservices/src/main/java/org/apache/causeway/core/runtimeservices/wrapper/InvocationHandlerforAsyncWrapRegular.java
create mode 100644
core/runtimeservices/src/main/java/org/apache/causeway/core/runtimeservices/wrapper/MemberAndTarget.java
rename
core/runtimeservices/src/main/java/org/apache/causeway/core/runtimeservices/wrapper/handlers/{DelegatingInvocationHandlerDefault.java
=> DelegatingInvocationHandlerAbstract.java} (54%)
create mode 100644
core/runtimeservices/src/main/java/org/apache/causeway/core/runtimeservices/wrapper/handlers/WrapperInvocationContext.java
rename
regressiontests/interact/src/test/java/org/apache/causeway/testdomain/interact/{WrapperInteractionTest.java
=> WrapperInteraction_1_IntegTest.java} (95%)
rename
regressiontests/interact/src/test/java/org/apache/causeway/testdomain/interact/{WrapperInteractionTest2.java
=> WrapperInteraction_2_IntegTest.java} (94%)
rename
regressiontests/interact/src/test/java/org/apache/causeway/testdomain/interact/{WrapperInteractionTest3.java
=> WrapperInteraction_3_IntegTest.java} (96%)
rename
regressiontests/interact/src/test/java/org/apache/causeway/testdomain/interact/{WrapperInteractionTest4.java
=> WrapperInteraction_4_IntegTest.java} (95%)
create mode 100644
regressiontests/interact/src/test/java/org/apache/causeway/testdomain/interact/WrapperInteraction_Caching_IntegTest.java
copy
regressiontests/{persistence-jdo/src/test/java/org/apache/causeway/testdomain/wrapper/jdo/JdoWrapperSyncTest.java
=>
persistence-jpa/src/test/java/org/apache/causeway/testdomain/wrapper/jdo/JpaWrapperSyncTest.java}
(68%)
create mode 100644
regressiontests/persistence-jpa/src/test/java/org/apache/causeway/testdomain/wrapper/jdo/WrapperFactoryMetaspaceMemoryLeakTest.java