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

no.nav.apiapp.rest.PingResource Maven / Gradle / Ivy

package no.nav.apiapp.rest;

import javax.ws.rs.GET;
import javax.ws.rs.Path;

@Path("/ping")
public class PingResource {

    @GET
    public String ping() {
        return "pong!";
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy