mirror of https://github.com/apache/nifi.git
NIFI-10627 - VersionedPort missing getter (#6511)
This commit is contained in:
parent
e87bced147
commit
0abc3bb719
|
@ -57,6 +57,10 @@ public class VersionedPort extends VersionedComponent {
|
||||||
return ((allowRemoteAccess != null) && allowRemoteAccess);
|
return ((allowRemoteAccess != null) && allowRemoteAccess);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public Boolean getAllowRemoteAccess() {
|
||||||
|
return allowRemoteAccess;
|
||||||
|
}
|
||||||
|
|
||||||
public void setAllowRemoteAccess(Boolean allowRemoteAccess) {
|
public void setAllowRemoteAccess(Boolean allowRemoteAccess) {
|
||||||
this.allowRemoteAccess = allowRemoteAccess;
|
this.allowRemoteAccess = allowRemoteAccess;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue