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
The following commit(s) were added to refs/heads/master by this push:
new 0391efb3c0 ISIS-3091: post merge: fixes compile issues
0391efb3c0 is described below
commit 0391efb3c0ea24227ff8f06fff2c2a5dc1cb1f23
Author: andi-huber <[email protected]>
AuthorDate: Tue Jul 26 07:15:53 2022 +0200
ISIS-3091: post merge: fixes compile issues
---
.../commandreplay/primary/ui/CommandReplayOnPrimaryService.java | 6 +++---
.../commandreplay/secondary/ui/CommandReplayOnSecondaryService.java | 4 ++--
2 files changed, 5 insertions(+), 5 deletions(-)
diff --git
a/incubator/extensions/core/commandreplay/primary/src/main/java/org/apache/isis/extensions/commandreplay/primary/ui/CommandReplayOnPrimaryService.java
b/incubator/extensions/core/commandreplay/primary/src/main/java/org/apache/isis/extensions/commandreplay/primary/ui/CommandReplayOnPrimaryService.java
index 2ce22e014c..c13e8c12f2 100644
---
a/incubator/extensions/core/commandreplay/primary/src/main/java/org/apache/isis/extensions/commandreplay/primary/ui/CommandReplayOnPrimaryService.java
+++
b/incubator/extensions/core/commandreplay/primary/src/main/java/org/apache/isis/extensions/commandreplay/primary/ui/CommandReplayOnPrimaryService.java
@@ -76,7 +76,7 @@ public class CommandReplayOnPrimaryService {
extends IsisModuleExtCommandLogApplib.ActionDomainEvent<T> { }
- @Action(domainEvent = findCommands.ActionEvent.class, semantics =
SemanticsOf.SAFE)
+ @Action(domainEvent = findCommands.ActionDomainEvent.class, semantics =
SemanticsOf.SAFE)
@ActionLayout(cssClassFa = "fa-search", sequence="40")
public class findCommands{
@@ -106,7 +106,7 @@ public class CommandReplayOnPrimaryService {
}
- @Action(domainEvent = downloadCommands.ActionEvent.class, semantics =
SemanticsOf.SAFE)
+ @Action(domainEvent = downloadCommands.ActionDomainEvent.class, semantics
= SemanticsOf.SAFE)
@ActionLayout(cssClassFa = "fa-download", sequence="50")
public class downloadCommands {
@@ -150,7 +150,7 @@ public class CommandReplayOnPrimaryService {
- @Action(domainEvent = downloadCommandById.ActionEvent.class, semantics =
SemanticsOf.SAFE)
+ @Action(domainEvent = downloadCommandById.ActionDomainEvent.class,
semantics = SemanticsOf.SAFE)
@ActionLayout(cssClassFa = "fa-download", sequence="50")
public class downloadCommandById {
diff --git
a/incubator/extensions/core/commandreplay/secondary/src/main/java/org/apache/isis/extensions/commandreplay/secondary/ui/CommandReplayOnSecondaryService.java
b/incubator/extensions/core/commandreplay/secondary/src/main/java/org/apache/isis/extensions/commandreplay/secondary/ui/CommandReplayOnSecondaryService.java
index f3ed4f5f42..277cee58cd 100644
---
a/incubator/extensions/core/commandreplay/secondary/src/main/java/org/apache/isis/extensions/commandreplay/secondary/ui/CommandReplayOnSecondaryService.java
+++
b/incubator/extensions/core/commandreplay/secondary/src/main/java/org/apache/isis/extensions/commandreplay/secondary/ui/CommandReplayOnSecondaryService.java
@@ -64,7 +64,7 @@ public class CommandReplayOnSecondaryService {
public static abstract class ActionDomainEvent<T> extends
IsisModuleExtCommandReplaySecondary.ActionDomainEvent<T> { }
- @Action(domainEvent = findMostRecentReplayed.ActionEvent.class, semantics
= SemanticsOf.SAFE)
+ @Action(domainEvent = findMostRecentReplayed.ActionDomainEvent.class,
semantics = SemanticsOf.SAFE)
@ActionLayout(cssClassFa = "fa-bath", sequence="60.1")
public class findMostRecentReplayed{
@@ -77,7 +77,7 @@ public class CommandReplayOnSecondaryService {
@Action(
- domainEvent = uploadCommands.ActionEvent.class,
+ domainEvent = uploadCommands.ActionDomainEvent.class,
semantics = SemanticsOf.NON_IDEMPOTENT
)
@ActionLayout(cssClassFa = "fa-upload", sequence="60.2")