Package com.krminc.phr.api.service.clinical

Source Code of com.krminc.phr.api.service.clinical.CcrResultTestsResource

/**
* 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.
*/
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/

package com.krminc.phr.api.service.clinical;

import com.krminc.phr.api.converter.clinical.CcrResultTestsConverter;
import com.krminc.phr.api.service.Api;
import com.krminc.phr.dao.PersistenceService;
import javax.ws.rs.Path;
import javax.ws.rs.GET;
import javax.ws.rs.Produces;
import javax.ws.rs.PathParam;
import javax.ws.rs.QueryParam;
import javax.ws.rs.DefaultValue;
import javax.ws.rs.core.Context;
import javax.ws.rs.core.UriInfo;
import com.sun.jersey.api.core.ResourceContext;

/**
*
* @author cmccall
*/

public class CcrResultTestsResource {
    @Context
    protected UriInfo uriInfo;
    @Context
    protected ResourceContext resourceContext;

    protected Long healthRecordId;
    protected CcrResultResource result;
 
    /** Creates a new instance of CcrResultTestsResource */
    public CcrResultTestsResource() {
    }

    public void setHealthRecordId(Long healthRecordId) {
        this.healthRecordId = healthRecordId;
    }

    public void setCcrResultResource(CcrResultResource result) {
        this.result = result;
    }

    /**
     * Get method for retrieving a collection of CcrResultTest instance in XML format.
     *
     * @return an instance of CcrResultTestsConverter
     */
    @GET
    @Produces({"application/xml", "application/json"})
    public CcrResultTestsConverter get(
        @QueryParam("start")
        @DefaultValue("0")
        int start,
        @QueryParam("max")
        @DefaultValue("10")
        int max
    ) {
        PersistenceService persistenceSvc = PersistenceService.getInstance();
        try {
            persistenceSvc.beginTx();
            return new CcrResultTestsConverter(result.getEntity().getResultTests(), uriInfo.getAbsolutePath(), Api.DEFAULT_EXPAND_LEVEL);
        } finally {
            persistenceSvc.commitTx();
            persistenceSvc.close();
        }
    }

    /**
     * Returns a dynamic instance of CcrResultTestResource used for entity navigation.
     *
     * @return an instance of CcrResultTestResource
     */
    @Path("{id}/")
    public CcrResultTestResource getCcrResultTestResource(@PathParam("id")
    Long id) {
        CcrResultTestResource resource = resourceContext.getResource(CcrResultTestResource.class);
        resource.setId(id);
        return resource;
    }

    /**
     * Returns all the entities associated with this resource.
     *
     * @return a collection of CcrResultTest instances
     */
//    protected Collection<CcrResultTest> getEntities(int start, int max) {
//        EntityManager em = PersistenceService.getInstance().getEntityManager();
//        return em.createNamedQuery("CcrResultTest.findByHealthRecordId")
//                .setParameter("healthRecordId" , this.healthRecordId)
//                .setFirstResult(start)
//                .setMaxResults(max)
//                .getResultList();
//    }
}
TOP

Related Classes of com.krminc.phr.api.service.clinical.CcrResultTestsResource

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.