Package org.codehaus.enunciate.samples.rs

Source Code of org.codehaus.enunciate.samples.rs.RootResource3

package org.codehaus.enunciate.samples.rs;

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

import org.codehaus.enunciate.samples.json.Address;

/**
* @author Steven Cummings
*/
@Path("root3")
public class RootResource3 {
  @GET
  public Address getAddress()
  {
    return new Address();
  }
}
TOP

Related Classes of org.codehaus.enunciate.samples.rs.RootResource3

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.