George Kitsos 99847caaac Dockerfile refine
Change-Id: I9ce10095247e8e339fab36cb64f0f62ffc091bd0
2024-04-02 07:57:23 +00:00

26 lines
1022 B
Java

package ubi.nebulous;
import jakarta.ws.rs.core.Application;
import org.eclipse.microprofile.openapi.annotations.OpenAPIDefinition;
import org.eclipse.microprofile.openapi.annotations.info.Contact;
import org.eclipse.microprofile.openapi.annotations.info.Info;
import org.eclipse.microprofile.openapi.annotations.info.License;
@OpenAPIDefinition(
info = @Info(
title = "Casbin Policy Engine Client",
version = "1.0.0",
description = "API for managing Casbin resource policies in Kubernetes.",
contact = @Contact(
name = "Nikos Papageorgopoulos",
url = "https://ubitech.eu",
email = "npapageorgopoulos@ubitech.eu"
),
license = @License(
name = "Apache 2.0",
url = "http://www.apache.org/licenses/LICENSE-2.0.html"
)
)
)
public class APIConfiguration extends Application {}