예제 #1
0
파일: DcmRcv.java 프로젝트: Cledio/Oviyam2
 private File getDir(Association as) {
   File dir = cache.getCacheRootDir();
   if (called2dir != null) {
     dir = new File(dir, called2dir.getProperty(as.getCalledAET(), calleddefdir));
   }
   if (calling2dir != null) {
     dir = new File(dir, calling2dir.getProperty(as.getCallingAET(), callingdefdir));
   }
   return dir;
 }
예제 #2
0
파일: DcmRcv.java 프로젝트: Cledio/Oviyam2
 private boolean isStgcmtEnabled() {
   return ae.getAETitle() != null && cache.getCacheRootDir() != null;
 }
예제 #3
0
파일: DcmRcv.java 프로젝트: Cledio/Oviyam2
 boolean isStoreFile() {
   return devnull != null || cache.getCacheRootDir() != null;
 }