Source code file content
arena / arena-http / src / main / java / com / kenai / puj / arena / http / PujPingResource.java
Size: 378 bytes, 1 line
package com.kenai.puj.arena.http;
import java.util.Date;
import javax.annotation.ManagedBean;
import javax.ws.rs.GET;
import javax.ws.rs.Path;
import javax.ws.rs.Produces;
import javax.ws.rs.core.MediaType;
@Path("ping")
@ManagedBean
public class PujPingResource {
@GET
@Produces( { MediaType.TEXT_PLAIN })
public String ping() {
return "pong (" + new Date() + ")";
}
}





