I’m using a implementation of AsyncAPIFilter
to customize AsyncAPI spec. I declared a filter in properties. How to get an access to Jandex index in the filter? Something like in Open API
@OpenApiFilter( OpenApiFilter.RunStage.BOTH )
public class MyOpenApiCustomizer implements OASFilter
{
private final IndexView index;
public MyOpenApiCustomizer ( IndexView index )
{
this.index = index;
}
}
?