You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nifi.apache.org by bb...@apache.org on 2022/10/12 01:53:10 UTC

[nifi] branch main updated: NIFI-10627 - VersionedPort missing getter (#6511)

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

bbende pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/nifi.git


The following commit(s) were added to refs/heads/main by this push:
     new 0abc3bb719 NIFI-10627 - VersionedPort missing getter (#6511)
0abc3bb719 is described below

commit 0abc3bb719460b8be482b3d3f854f4d79f455177
Author: greyp9 <gr...@users.noreply.github.com>
AuthorDate: Tue Oct 11 21:53:01 2022 -0400

    NIFI-10627 - VersionedPort missing getter (#6511)
---
 nifi-api/src/main/java/org/apache/nifi/flow/VersionedPort.java | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/nifi-api/src/main/java/org/apache/nifi/flow/VersionedPort.java b/nifi-api/src/main/java/org/apache/nifi/flow/VersionedPort.java
index 3b06e0eb1f..676090e4fa 100644
--- a/nifi-api/src/main/java/org/apache/nifi/flow/VersionedPort.java
+++ b/nifi-api/src/main/java/org/apache/nifi/flow/VersionedPort.java
@@ -57,6 +57,10 @@ public class VersionedPort extends VersionedComponent {
         return ((allowRemoteAccess != null) && allowRemoteAccess);
     }
 
+    public Boolean getAllowRemoteAccess() {
+        return allowRemoteAccess;
+    }
+
     public void setAllowRemoteAccess(Boolean allowRemoteAccess) {
         this.allowRemoteAccess = allowRemoteAccess;
     }