NIFI-10627 - VersionedPort missing getter (#6511)

This commit is contained in:
greyp9 2022-10-11 21:53:01 -04:00 committed by GitHub
parent e87bced147
commit 0abc3bb719
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 0 deletions

View File

@ -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;
}