pl.allegro.tech.hermes.management.api.UiResource Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hermes-management Show documentation
Show all versions of hermes-management Show documentation
Fast and reliable message broker built on top of Kafka.
package pl.allegro.tech.hermes.management.api;
import static jakarta.ws.rs.core.MediaType.TEXT_HTML;
import jakarta.ws.rs.GET;
import jakarta.ws.rs.Path;
import jakarta.ws.rs.Produces;
import org.glassfish.jersey.server.mvc.Viewable;
@Path("/")
public class UiResource {
@GET
@Produces(TEXT_HTML)
public Viewable getIndex() {
return new Viewable("/index.html");
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy