public interface IOdiScenarioFolderFinder extends IFinder
OdiScenarioFolder
entity.Modifier and Type | Method and Description |
---|---|
java.util.Collection |
findAllByName(java.lang.String pFolderName)
Finds all
OdiScenarioFolder instances with the specified name. |
OdiScenarioFolder |
findByName(java.lang.String pFolderName)
Finds
OdiScenarioFolder instance with the specified name. |
java.util.Collection |
findByParentName(java.lang.String pFolderName,
java.lang.String pParentFolderName)
Find all
OdiScenarioFolder instance with the specified name under a ancestor folder with specified name. |
findAll, findByGlobalId, findById, findByIds, findRepositoryEntityById
OdiScenarioFolder findByName(java.lang.String pFolderName)
OdiScenarioFolder
instance with the specified name.pFolderName
- folder's nameOdiScenarioFolder
instance with the specified name or null if not foundjava.util.Collection findAllByName(java.lang.String pFolderName)
OdiScenarioFolder
instances with the specified name.pFolderName
- folder's nameOdiScenarioFolder
instances with the specified name.java.util.Collection findByParentName(java.lang.String pFolderName, java.lang.String pParentFolderName)
OdiScenarioFolder
instance with the specified name under a ancestor folder with specified name.
If there are multiple ancestors with same specific name then all OdiScenarioFolder
with specific name under these ancestors is returned.pFolderName
- folder's namepParentFolderName
- folder's nameOdiScenarioFolder
instances with the specified name under a parent folder with specified name.