src/HelloResource.java
author IRI
Wed, 24 Mar 2010 06:44:35 +0100
changeset 5 4aea9df5515d
parent 0 586a7e03cbb4
permissions -rw-r--r--
Unit test and debug

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

@Path ("helloworld")
public class HelloResource {

	@GET
	@Produces ("text/plain")
	public String sayHello() {
		return "Hello World";
		}	
}