source: ccr/trunk/nhin-vista/projects/NHINC/Current/Product/Production/Gateway/PatientCorrelationFacadeDteEjb/src/java/gov/hhs/fha/nhinc/common/patientcorrelationfacade/dte/helpers/CSHelper.java@ 507

Last change on this file since 507 was 507, checked in by George Lilly, 15 years ago

NHIN gateway and adaptor for use on linux with VistA EHR and RPMS

File size: 383 bytes
Line 
1/*
2 * To change this template, choose Tools | Templates
3 * and open the template in the editor.
4 */
5
6package gov.hhs.fha.nhinc.common.patientcorrelationfacade.dte.helpers;
7
8import org.hl7.v3.CS;
9
10/**
11 *
12 * @author rayj
13 */
14public class CSHelper {
15 public static CS buildCS(String code) {
16 CS csCode = new CS();
17 csCode.setCode(code);
18 return csCode;
19 }
20
21}
Note: See TracBrowser for help on using the repository browser.