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

archetype-resources.src.main.java.com.airhacks.full.boundary.PingResource Maven / Gradle / Ivy

There is a newer version: 0.0.3
Show newest version
package com.airhacks.full.boundary;

import javax.ws.rs.GET;
import javax.ws.rs.Path;
import javax.ws.rs.Produces;
import javax.ws.rs.core.MediaType;

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

    @GET
    @Produces(MediaType.TEXT_PLAIN)
    public String hello() {
        return "hello";
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy