In my project all endpoints recives 3 default headers params. I would like to define this just once. Now I'm just setting this 3 params to every endpoint
@Parameter(name = "app-key", in = ParameterIn.HEADER, required = true, schema = @Schema(type = "string"))
@Parameter(name = "other-key", in = ParameterIn.HEADER, required = true, schema = @Schema(type = "string"))
@Parameter(name = "other-key", in = ParameterIn.HEADER, required = true, schema = @Schema(type = "string"))