I am writing a custom authorizer, and I need access to some properties in nifi.properties during the onConfigured method. It is similar to the usage in FileAccessPolicyProvider. In this class, there is a setNiFiProperties method annotated with @AuthorizerContext. Presumably, this annotation causes the framework to execute the method. When does this occur? More specifically, does it occur before the onConfigured method is invoked?
In my testing, setNiFiProperties is not being called - at least not prior to onConfigured in which case an NPE is thrown due to the properties not being set. Thanks, Mark
