You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@isis.apache.org by da...@apache.org on 2021/06/28 05:27:27 UTC

[isis] branch ISIS-2772 updated: ISIS-2772: adds new factory method in ApplicationFeatureId for member, using LogicalType

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

danhaywood pushed a commit to branch ISIS-2772
in repository https://gitbox.apache.org/repos/asf/isis.git


The following commit(s) were added to refs/heads/ISIS-2772 by this push:
     new d3059b2  ISIS-2772: adds new factory method in ApplicationFeatureId for member, using LogicalType
d3059b2 is described below

commit d3059b2b3f4a499e9dac9a94bb7e664e68a7f033
Author: danhaywood <da...@haywood-associates.co.uk>
AuthorDate: Mon Jun 28 06:27:14 2021 +0100

    ISIS-2772: adds new factory method in ApplicationFeatureId for member, using LogicalType
---
 .../org/apache/isis/applib/services/appfeat/ApplicationFeatureId.java | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/api/applib/src/main/java/org/apache/isis/applib/services/appfeat/ApplicationFeatureId.java b/api/applib/src/main/java/org/apache/isis/applib/services/appfeat/ApplicationFeatureId.java
index e5018cf..0e6d2a4 100644
--- a/api/applib/src/main/java/org/apache/isis/applib/services/appfeat/ApplicationFeatureId.java
+++ b/api/applib/src/main/java/org/apache/isis/applib/services/appfeat/ApplicationFeatureId.java
@@ -137,6 +137,10 @@ implements
         return newType(logicalType.getLogicalTypeName());
     }
 
+    public static ApplicationFeatureId newMember(final LogicalType logicalType, final String memberLogicalName) {
+        return newMember(logicalType.getLogicalTypeName(), memberLogicalName);
+    }
+
     public static ApplicationFeatureId newMember(final String logicalTypeName, final String memberLogicalName) {
         val featureId = new ApplicationFeatureId(ApplicationFeatureSort.MEMBER);
         initType(featureId, logicalTypeName);