log4j-catalog/log4j-catalog-editor/src/main/java/org/apache/logging/log4j/catalog/config/SwaggerConfig.java [52:62]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    private ApiInfo apiInfo() {
        return new ApiInfoBuilder()
                .title("Catalog Service")
                .description("Maintains the audit event catalog")
                .termsOfServiceUrl("http://logging.apache.org")
                .contact("Apache Logging")
                .license("1.0")
                .licenseUrl("http://www.apache.org/licenses/")
                .version("1.0")
                .build();
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



log4j-audit/log4j-audit-war/src/main/java/org/apache/logging/log4j/audit/service/config/SwaggerConfig.java [52:62]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    private ApiInfo apiInfo() {
        return new ApiInfoBuilder()
            .title("Audit Service")
            .description("Audits events")
            .termsOfServiceUrl("http://logging.apache.org")
            .contact("Apache Logging")
            .license("1.0")
            .licenseUrl("http://www.apache.org/licenses/")
            .version("1.0")
            .build();
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



