use of org.kuali.kfs.sys.service.impl.FileSystemFileStorageServiceImpl in project cu-kfs by CU-CommunityApps.
the class ConcurBatchUtilityServiceImplTest method setUp.
@Before
public void setUp() throws Exception {
utilityService = new ConcurBatchUtilityServiceImpl();
FileSystemFileStorageServiceImpl fileService = new FileSystemFileStorageServiceImpl();
fileService.setPathPrefix(StringUtils.EMPTY);
utilityService.setFileStorageService(fileService);
}
use of org.kuali.kfs.sys.service.impl.FileSystemFileStorageServiceImpl in project cu-kfs by CU-CommunityApps.
the class CreateAccountingDocumentServiceImplTest method buildFileStorageService.
private FileStorageService buildFileStorageService() throws Exception {
FileSystemFileStorageServiceImpl fileStorageService = new FileSystemFileStorageServiceImpl();
fileStorageService.setPathPrefix(KFSConstants.DELIMITER);
return fileStorageService;
}
Aggregations