NIFI-11286 Added getter for ExtensionComponent.restricted

This closes #7048

Signed-off-by: David Handermann <exceptionfactory@apache.org>
This commit is contained in:
Paul Grey 2023-03-14 19:01:11 -04:00 committed by exceptionfactory
parent 4d8c13b8e1
commit a278e8dde2
No known key found for this signature in database
GPG Key ID: 29B6A52D2AAE8DBA
1 changed files with 4 additions and 0 deletions

View File

@ -121,6 +121,10 @@ public class ExtensionComponent extends DefinedType {
return restricted; return restricted;
} }
public Boolean getRestricted() {
return restricted;
}
public void setRestricted(Boolean restricted) { public void setRestricted(Boolean restricted) {
this.restricted = restricted; this.restricted = restricted;
} }