/** * Copyright 2014 Reverb Technologies, Inc. * <p> * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * <p> * http://www.apache.org/licenses/LICENSE-2.0 * <p> * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.wordnik.jaxrs; import javax.ws.rs.Path; import javax.ws.rs.core.Response; import com.wordnik.sample.JavaRestResourceUtil; import com.wordnik.sample.data.PetData; import com.wordnik.sample.model.Pet; @Path("/myResourceImpl") public class MyResourceImpl implements MyResource { static PetData petData = new PetData(); static JavaRestResourceUtil ru = new JavaRestResourceUtil(); //contrived example test case for swagger-maven-plugin issue #358 /* (non-Javadoc) * @see com.wordnik.jaxrs.MyResource#getPetsById(java.lang.Long, java.lang.Long) */ @Override public Response getPetsById(Long startId, Long endId) throws com.wordnik.sample.exception.NotFoundException { Pet pet = petData.getPetbyId(startId); if (pet != null) { return Response.ok().entity(pet).build(); } else { throw new com.wordnik.sample.exception.NotFoundException(404, "Pet not found"); } } }