This is an automated email from the ASF dual-hosted git repository.
danhaywood pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/causeway-app-referenceapp.git
The following commit(s) were added to refs/heads/master by this push:
new 23e6660 CAUSEWAY-3390 : fixes due to change in types
23e6660 is described below
commit 23e66605ba9624c458b6de9b78790b4850d7df3a
Author: danhaywood <[email protected]>
AuthorDate: Sat Jan 6 10:59:12 2024 +0000
CAUSEWAY-3390 : fixes due to change in types
---
.../ActionCommandPublishingEntity_publishedCommands.java | 2 +-
.../ActionCommandPublishingPage_publishedCommands.java | 3 ++-
.../ActionExecutionPublishingEntity_publishedExecutions.java | 2 +-
.../ActionExecutionPublishingPage_publishedExecutions.java | 3 ++-
.../PropertyCommandPublishingEntity_publishedCommands.java | 3 ++-
.../PropertyExecutionPublishingEntity_publishedExecutions.java | 3 ++-
6 files changed, 10 insertions(+), 6 deletions(-)
diff --git
a/domain/src/main/java/demoapp/dom/domain/actions/Action/commandPublishing/ActionCommandPublishingEntity_publishedCommands.java
b/domain/src/main/java/demoapp/dom/domain/actions/Action/commandPublishing/ActionCommandPublishingEntity_publishedCommands.java
index 979e831..adee3a9 100644
---
a/domain/src/main/java/demoapp/dom/domain/actions/Action/commandPublishing/ActionCommandPublishingEntity_publishedCommands.java
+++
b/domain/src/main/java/demoapp/dom/domain/actions/Action/commandPublishing/ActionCommandPublishingEntity_publishedCommands.java
@@ -25,7 +25,7 @@ public class ActionCommandPublishingEntity_publishedCommands {
bookmarkService.bookmarkForElseFail(entity));
}
- @Inject CommandLogEntryRepository<? extends CommandLogEntry>
commandLogEntryRepository; // <.>
+ @Inject CommandLogEntryRepository commandLogEntryRepository; // <.>
@Inject BookmarkService bookmarkService;
}
//end::class[]
diff --git
a/domain/src/main/java/demoapp/dom/domain/actions/Action/commandPublishing/ActionCommandPublishingPage_publishedCommands.java
b/domain/src/main/java/demoapp/dom/domain/actions/Action/commandPublishing/ActionCommandPublishingPage_publishedCommands.java
index d33013d..5b7e119 100644
---
a/domain/src/main/java/demoapp/dom/domain/actions/Action/commandPublishing/ActionCommandPublishingPage_publishedCommands.java
+++
b/domain/src/main/java/demoapp/dom/domain/actions/Action/commandPublishing/ActionCommandPublishingPage_publishedCommands.java
@@ -13,6 +13,7 @@ import
org.apache.causeway.extensions.commandlog.applib.dom.CommandLogEntryRepos
import lombok.RequiredArgsConstructor;
//tag::class[]
+@SuppressWarnings("CdiManagedBeanInconsistencyInspection")
@Collection()
@RequiredArgsConstructor
public class ActionCommandPublishingPage_publishedCommands {
@@ -24,7 +25,7 @@ public class ActionCommandPublishingPage_publishedCommands {
return
commandLogEntryRepository.findRecentByTarget(bookmarkService.bookmarkForElseFail(page));
}
- @Inject CommandLogEntryRepository<? extends CommandLogEntry>
commandLogEntryRepository; // <.>
+ @Inject CommandLogEntryRepository commandLogEntryRepository; // <.>
@Inject BookmarkService bookmarkService;
}
//end::class[]
diff --git
a/domain/src/main/java/demoapp/dom/domain/actions/Action/executionPublishing/ActionExecutionPublishingEntity_publishedExecutions.java
b/domain/src/main/java/demoapp/dom/domain/actions/Action/executionPublishing/ActionExecutionPublishingEntity_publishedExecutions.java
index ecfe770..ed330cf 100644
---
a/domain/src/main/java/demoapp/dom/domain/actions/Action/executionPublishing/ActionExecutionPublishingEntity_publishedExecutions.java
+++
b/domain/src/main/java/demoapp/dom/domain/actions/Action/executionPublishing/ActionExecutionPublishingEntity_publishedExecutions.java
@@ -23,7 +23,7 @@ public class
ActionExecutionPublishingEntity_publishedExecutions {
return
executionLogEntryRepository.findRecentByTarget(bookmarkService.bookmarkForElseFail(entity));
}
- @Inject ExecutionLogEntryRepository<? extends ExecutionLogEntry>
executionLogEntryRepository; // <.>
+ @Inject ExecutionLogEntryRepository executionLogEntryRepository; // <.>
@Inject BookmarkService bookmarkService;
}
//end::class[]
diff --git
a/domain/src/main/java/demoapp/dom/domain/actions/Action/executionPublishing/ActionExecutionPublishingPage_publishedExecutions.java
b/domain/src/main/java/demoapp/dom/domain/actions/Action/executionPublishing/ActionExecutionPublishingPage_publishedExecutions.java
index d3d5011..84a26fe 100644
---
a/domain/src/main/java/demoapp/dom/domain/actions/Action/executionPublishing/ActionExecutionPublishingPage_publishedExecutions.java
+++
b/domain/src/main/java/demoapp/dom/domain/actions/Action/executionPublishing/ActionExecutionPublishingPage_publishedExecutions.java
@@ -14,6 +14,7 @@ import
org.apache.causeway.extensions.executionlog.applib.dom.ExecutionLogEntryR
import lombok.RequiredArgsConstructor;
//tag::class[]
+@SuppressWarnings("CdiManagedBeanInconsistencyInspection")
@Collection()
@RequiredArgsConstructor
public class ActionExecutionPublishingPage_publishedExecutions {
@@ -33,7 +34,7 @@ public class
ActionExecutionPublishingPage_publishedExecutions {
.collect(Collectors.toList());
}
- @Inject ExecutionLogEntryRepository<? extends ExecutionLogEntry>
executionLogEntryRepository; // <.>
+ @Inject ExecutionLogEntryRepository executionLogEntryRepository; // <.>
@Inject BookmarkService bookmarkService;
}
//end::class[]
diff --git
a/domain/src/main/java/demoapp/dom/domain/properties/Property/commandPublishing/PropertyCommandPublishingEntity_publishedCommands.java
b/domain/src/main/java/demoapp/dom/domain/properties/Property/commandPublishing/PropertyCommandPublishingEntity_publishedCommands.java
index 51d233c..2122e5f 100644
---
a/domain/src/main/java/demoapp/dom/domain/properties/Property/commandPublishing/PropertyCommandPublishingEntity_publishedCommands.java
+++
b/domain/src/main/java/demoapp/dom/domain/properties/Property/commandPublishing/PropertyCommandPublishingEntity_publishedCommands.java
@@ -13,6 +13,7 @@ import
org.apache.causeway.extensions.commandlog.applib.dom.CommandLogEntryRepos
import lombok.RequiredArgsConstructor;
//tag::class[]
+@SuppressWarnings("CdiManagedBeanInconsistencyInspection")
@Collection()
@RequiredArgsConstructor
public class PropertyCommandPublishingEntity_publishedCommands {
@@ -25,7 +26,7 @@ public class
PropertyCommandPublishingEntity_publishedCommands {
bookmarkService.bookmarkForElseFail(entity));
}
- @Inject CommandLogEntryRepository<? extends CommandLogEntry>
commandLogEntryRepository; // <.>
+ @Inject CommandLogEntryRepository commandLogEntryRepository; // <.>
@Inject BookmarkService bookmarkService;
}
//end::class[]
diff --git
a/domain/src/main/java/demoapp/dom/domain/properties/Property/executionPublishing/PropertyExecutionPublishingEntity_publishedExecutions.java
b/domain/src/main/java/demoapp/dom/domain/properties/Property/executionPublishing/PropertyExecutionPublishingEntity_publishedExecutions.java
index 9abd58d..d80c610 100644
---
a/domain/src/main/java/demoapp/dom/domain/properties/Property/executionPublishing/PropertyExecutionPublishingEntity_publishedExecutions.java
+++
b/domain/src/main/java/demoapp/dom/domain/properties/Property/executionPublishing/PropertyExecutionPublishingEntity_publishedExecutions.java
@@ -13,6 +13,7 @@ import
org.apache.causeway.extensions.executionlog.applib.dom.ExecutionLogEntryR
import lombok.RequiredArgsConstructor;
//tag::class[]
+@SuppressWarnings("CdiManagedBeanInconsistencyInspection")
@Collection()
@RequiredArgsConstructor
public class PropertyExecutionPublishingEntity_publishedExecutions {
@@ -24,7 +25,7 @@ public class
PropertyExecutionPublishingEntity_publishedExecutions {
return
executionLogEntryRepository.findRecentByTarget(bookmarkService.bookmarkForElseFail(entity));
}
- @Inject ExecutionLogEntryRepository<? extends ExecutionLogEntry>
executionLogEntryRepository;
+ @Inject ExecutionLogEntryRepository executionLogEntryRepository;
@Inject BookmarkService bookmarkService;
}
//end::class[]