Interface ReferenceFileService
-
- All Superinterfaces:
CRUDService<java.lang.Long,ReferenceFile>
- All Known Implementing Classes:
ReferenceFileServiceImpl
public interface ReferenceFileService extends CRUDService<java.lang.Long,ReferenceFile>
Interface for interactions withReferenceFile
.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.List<Join<Project,ReferenceFile>>
getReferenceFilesForProject(Project project)
Get the collection ofReferenceFile
attached to the specifiedProject
.-
Methods inherited from interface ca.corefacility.bioinformatics.irida.service.CRUDService
count, create, delete, exists, findAll, findRevisions, findRevisions, list, list, list, read, readMultiple, search, search, update, updateFields, updateMultiple
-
-
-
-
Method Detail
-
getReferenceFilesForProject
java.util.List<Join<Project,ReferenceFile>> getReferenceFilesForProject(Project project)
Get the collection ofReferenceFile
attached to the specifiedProject
.- Parameters:
project
- theProject
to getReferenceFile
s for.- Returns:
- the collection of
ReferenceFile
attached to theProject
.
-
-