Allow custom operations/providers in addition to interceptors (#654)
* Allow custom operations/providers to be added in the same way custom interceptors are currently loaded * Add new property to documentation and default yaml file * Add test for custom operation
This commit is contained in:
@@ -97,12 +97,16 @@ public class AppProperties {
|
||||
|
||||
private final List<String> custom_interceptor_classes = new ArrayList<>();
|
||||
|
||||
private final List<String> custom_provider_classes = new ArrayList<>();
|
||||
|
||||
|
||||
public List<String> getCustomInterceptorClasses() {
|
||||
return custom_interceptor_classes;
|
||||
}
|
||||
|
||||
public List<String> getCustomProviderClasses() {
|
||||
return custom_provider_classes;
|
||||
}
|
||||
|
||||
|
||||
public Boolean getOpenapi_enabled() {
|
||||
|
||||
Reference in New Issue
Block a user