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:
David Conlan
2024-03-04 02:39:03 +10:00
committed by GitHub
parent 3ea85a05aa
commit 4226648867
7 changed files with 193 additions and 0 deletions

View File

@@ -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() {