/** * Copyright (C) 2012 KRM Associates, Inc. healtheme@krminc.com * * 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 * * http://www.apache.org/licenses/LICENSE-2.0 * * 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.krminc.phr.api.service.clinical; import com.krminc.phr.api.converter.clinical.RecordIdentifierConverter; import com.krminc.phr.api.service.Api; import com.krminc.phr.dao.PersistenceService; import com.krminc.phr.domain.clinical.RecordIdentifier; import com.sun.jersey.api.core.ResourceContext; import javax.persistence.EntityManager; import javax.persistence.NoResultException; import javax.ws.rs.GET; import javax.ws.rs.PUT; import javax.ws.rs.DELETE; import javax.ws.rs.Produces; import javax.ws.rs.Consumes; import javax.ws.rs.core.Context; import javax.ws.rs.core.UriInfo; import javax.ws.rs.WebApplicationException; import javax.ws.rs.core.MediaType; /** * Record Identifier API RESTful resource class. * * @author Daniel Shaw (dshaw.com) */ public class RecordIdentifierResource { @Context protected UriInfo uriInfo; @Context protected ResourceContext resourceContext; protected Long id; /** Creates a new instance of RecordIdentifierResource */ public RecordIdentifierResource() { } public void setId(Long id) { this.id = id; } /** * Get method for retrieving an instance of RecordIdentifier identified by id in XML format. * * @param id identifier for the entity * @return an instance of RecordIdentifierConverter */ @GET @Produces({ MediaType.APPLICATION_JSON, MediaType.APPLICATION_XML }) public RecordIdentifierConverter get() { PersistenceService persistenceSvc = PersistenceService.getInstance(); try { persistenceSvc.beginTx(); return new RecordIdentifierConverter(getEntity(), uriInfo.getAbsolutePath(), Api.DEFAULT_EXPAND_LEVEL); } finally { PersistenceService.getInstance().close(); } } /** * Put method for updating an instance of RecordIdentifier identified by id using XML as the input format. * * @param id identifier for the entity * @param data an RecordIdentifierConverter entity that is deserialized from a XML stream */ @PUT @Consumes({ MediaType.APPLICATION_JSON, MediaType.APPLICATION_XML }) public void put(RecordIdentifierConverter data) { PersistenceService persistenceSvc = PersistenceService.getInstance(); try { persistenceSvc.beginTx(); EntityManager em = persistenceSvc.getEntityManager(); updateEntity(getEntity(), data.resolveEntity(em)); persistenceSvc.commitTx(); } finally { persistenceSvc.close(); } } /** * Delete method for deleting an instance of RecordIdentifier identified by id. * * @param id identifier for the entity */ @DELETE public void delete() { PersistenceService persistenceSvc = PersistenceService.getInstance(); try { persistenceSvc.beginTx(); deleteEntity(getEntity()); persistenceSvc.commitTx(); } finally { persistenceSvc.close(); } } /** * Returns an instance of RecordIdentifier identified by id. * * @param id identifier for the entity * @return an instance of RecordIdentifier */ protected RecordIdentifier getEntity() { EntityManager em = PersistenceService.getInstance().getEntityManager(); try { return (RecordIdentifier) em.find(RecordIdentifier.class, id); } catch (NoResultException ex) { throw new WebApplicationException(new Throwable("Resource for " + uriInfo.getAbsolutePath() + " does not exist."), 404); } } /** * Updates entity using data from newEntity. * * @param entity the entity to update * @param newEntity the entity containing the new data * @return the updated entity */ protected RecordIdentifier updateEntity(RecordIdentifier entity, RecordIdentifier newEntity) { EntityManager em = PersistenceService.getInstance().getEntityManager(); entity = em.merge(newEntity); return entity; } /** * Deletes the entity. * * @param entity the entity to deletle */ protected void deleteEntity(RecordIdentifier entity) { EntityManager em = PersistenceService.getInstance().getEntityManager(); em.remove(entity); } }