package com.ayas.rest.service; import javax.ws.rs.Consumes; import javax.ws.rs.GET; import javax.ws.rs.Path; import javax.ws.rs.Produces; import javax.ws.rs.ext.Provider; import com.ayas.rest.model.jaxb.Student; @Path("/student") @Provider public class StudentInfoService { @GET @Consumes("application/json") @Produces("application/json") public Student getEmpDetailsInJSONObject() { Student student = new Student(); student.setRoll_no("LKG-A-05"); student.setName("Abha"); return student; } }