MCPcopy Create free account
hub / github.com/LQF-dev/smart-hr / OpenApiConfig

Class OpenApiConfig

back/src/main/java/com/smarthr/config/OpenApiConfig.java:10–22  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

8import 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)
21public class OpenApiConfig {
22}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected