mirror of https://github.com/apache/nifi.git
NIFI-11286 Added getter for ExtensionComponent.restricted
This closes #7048 Signed-off-by: David Handermann <exceptionfactory@apache.org>
This commit is contained in:
parent
4d8c13b8e1
commit
a278e8dde2
|
@ -121,6 +121,10 @@ public class ExtensionComponent extends DefinedType {
|
|||
return restricted;
|
||||
}
|
||||
|
||||
public Boolean getRestricted() {
|
||||
return restricted;
|
||||
}
|
||||
|
||||
public void setRestricted(Boolean restricted) {
|
||||
this.restricted = restricted;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue