src/HelloResource.java
author IRI
Sat, 20 Mar 2010 03:54:43 +0100
changeset 1 25dda14508ec
parent 0 586a7e03cbb4
permissions -rw-r--r--
defined init and retrain

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";
		}	
}