Skip to content

Commit

Permalink
Fixing v2_getImage collection name
Browse files Browse the repository at this point in the history
  • Loading branch information
jmwhorton committed Jun 24, 2024
1 parent 04f1da7 commit 6f30f12
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ public Response constructResponse(@QueryParam("SeriesInstanceUID") String series
StreamingOutput stream = null;
ImageDAO2 tDao = (ImageDAO2)SpringApplicationContext.getBean("imageDAO2");
String fileContents=tDao.getLicenseContent(sid);
GeneralSeriesDAO gsDao = (GeneralSeriesDAO)SpringApplicationContext.getBean("seriesDao");
GeneralSeriesDAO gsDao = (GeneralSeriesDAO)SpringApplicationContext.getBean("generalSeriesDAO");
String collectionName = gsDao.getCollectionNameForSeriesInstanceUid(sid);
System.out.println("get collection name="+ collectionName);

Expand Down

0 comments on commit 6f30f12

Please sign in to comment.