Assignment 2: We have the following Biz methods in AreaCodeService.java (Starter.zip) public interface AreaCodeService { public String getState(int areaCode); public String getDescription(int areaCode) throws AreaCodeException; public String getOffset(int areaCode); } please write and test the following REST API methods @GET @Produces({MediaType.TEXT_PLAIN}) @Path("/state/{areaCode}") public String getState(@PathParam("areaCode") int areaCode) { call the "back-end code" } add method to: getDescription getOffset ---------------------------------------------- Create a new Java Class -> as the SEI for this REST Web Service write and annotate methods in the new class -> @GET methods test this in the Browser and in SOAP UI