All Downloads are FREE. Search and download functionalities are using the official Maven repository.

pl.allegro.tech.hermes.management.api.UiResource Maven / Gradle / Ivy

There is a newer version: 2.8.0
Show newest version
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