| 8 | import org.springframework.context.annotation.Configuration; |
| 9 | |
| 10 | @Configuration |
| 11 | @OpenAPIDefinition( |
| 12 | info = @Info(title = "Smart HR API", version = "v1"), |
| 13 | security = @SecurityRequirement(name = "bearerAuth") |
| 14 | ) |
| 15 | @SecurityScheme( |
| 16 | name = "bearerAuth", |
| 17 | type = SecuritySchemeType.HTTP, |
| 18 | scheme = "bearer", |
| 19 | bearerFormat = "JWT" |
| 20 | ) |
| 21 | public class OpenApiConfig { |
| 22 | } |
nothing calls this directly
no outgoing calls
no test coverage detected