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/05/17 09:35:55 UTC

[isis] branch master updated: ISIS-2681: align names in DomainObjectList

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 f4839d6  ISIS-2681: align names in DomainObjectList
f4839d6 is described below

commit f4839d6643397b5d5c748f947f3bccd27005a052
Author: ahuber@apache.org <ah...@luna>
AuthorDate: Mon May 17 11:35:43 2021 +0200

    ISIS-2681: align names in DomainObjectList
---
 .../java/org/apache/isis/applib/domain/DomainObjectList.java   | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/api/applib/src/main/java/org/apache/isis/applib/domain/DomainObjectList.java b/api/applib/src/main/java/org/apache/isis/applib/domain/DomainObjectList.java
index 806c18e..45a446f 100644
--- a/api/applib/src/main/java/org/apache/isis/applib/domain/DomainObjectList.java
+++ b/api/applib/src/main/java/org/apache/isis/applib/domain/DomainObjectList.java
@@ -58,10 +58,10 @@ import lombok.Getter;
 @XmlType(
         propOrder = {
                 "title",
-                "actionOwningType",
+                "actionOwningFqcn",
                 "actionId",
                 "actionArguments",
-                "elementObjectType",
+                "elementTypeFqcn",
                 "objects"
         }
         )
@@ -100,12 +100,12 @@ public class DomainObjectList {
     public DomainObjectList(
             final String title,
             final String elementTypeFqcn,
-            final String actionOwnerFqcn,
+            final String actionOwningFqcn,
             final String actionId,
             final String actionArguments) {
         this.title = title;
         this.elementTypeFqcn = elementTypeFqcn;
-        this.actionOwnerFqcn = actionOwnerFqcn;
+        this.actionOwningFqcn = actionOwningFqcn;
         this.actionId = actionId;
         this.actionArguments = actionArguments;
     }
@@ -140,7 +140,7 @@ public class DomainObjectList {
             editing = Editing.DISABLED
             )
     @Getter
-    private String actionOwnerFqcn;
+    private String actionOwningFqcn;
 
     // -- property: actionId
     public static class ActionIdDomainEvent extends PropertyDomainEvent<String> {  }