Skip to content
This repository has been archived by the owner on Nov 9, 2017. It is now read-only.

Commit

Permalink
rhbz980658 change component name of FileSystemPersistService
Browse files Browse the repository at this point in the history
  • Loading branch information
davidmason committed Jul 25, 2013
1 parent e400b3b commit f591d97
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
Expand Up @@ -124,7 +124,7 @@ public class ProjectIterationFilesAction implements Serializable
@In
private LocaleDAO localeDAO;

@In("fileSystemPersistService")
@In("filePersistService")
private FilePersistService filePersistService;

@In
Expand Down
Expand Up @@ -43,7 +43,7 @@

import com.google.common.io.Files;

@Name("fileSystemPersistService")
@Name("filePersistService")
@Scope(ScopeType.STATELESS)
@AutoCreate
@Slf4j
Expand Down
Expand Up @@ -72,7 +72,7 @@ public class SourceDocumentUpload

@In(create = true, value = "documentUploadUtil")
private DocumentUploadUtil util;
@In("fileSystemPersistService")
@In("filePersistService")
private FilePersistService filePersistService;
@In
private ZanataIdentity identity;
Expand Down
Expand Up @@ -107,7 +107,7 @@ public class FileService implements FileResource
@In(value = "translationDocumentUploader", create = true)
private TranslationDocumentUpload translationUploader;

@In("fileSystemPersistService")
@In("filePersistService")
private FilePersistService filePersistService;

@Override
Expand Down
Expand Up @@ -43,7 +43,7 @@ public class GetDocumentListHandler extends AbstractActionHandler<GetDocumentLis
@In
private TranslationFileService translationFileServiceImpl;

@In("fileSystemPersistService")
@In("filePersistService")
private FilePersistService filePersistService;

@Override
Expand Down
Expand Up @@ -105,7 +105,7 @@ public void beforeTest()
.use("translationFileServiceImpl", translationFileService)
.use("documentServiceImpl", documentService)
.use("documentDAO", documentDAO)
.use("fileSystemPersistService", filePersistService)
.use("filePersistService", filePersistService)
.allowCycles();

fileService = seam.autowire(FileService.class);
Expand Down
Expand Up @@ -59,7 +59,7 @@ public void setUp() throws Exception
.use("documentDAO", documentDAO)
.use("translationFileServiceImpl", translationFileServiceImpl)
.use("translationStateCacheImpl", translationStateCacheImpl)
.use("fileSystemPersistService", filePersistService)
.use("filePersistService", filePersistService)
.ignoreNonResolvable()
.autowire(GetDocumentListHandler.class);
// @formatter:on
Expand Down

0 comments on commit f591d97

Please sign in to comment.