/** * getPACSConfigVo */ public ims.core.vo.PacsConfigurationVo getPACSConfigVo() { DomainFactory factory = getDomainFactory(); List<?> lstPACS = factory.find("select e1_1 from PACSConfiguration as e1_1 "); if(lstPACS != null && lstPACS.size() >0) { PacsConfigurationVoCollection tempColl = PacsConfigurationVoAssembler.createPacsConfigurationVoCollectionFromPACSConfiguration(lstPACS); if( tempColl != null && tempColl.size() > 0) return tempColl.get(0); } return null; }