public interface IOdiScenarioFinder extends IFinder
OdiScenario entity.
Created on 3 janv. 08| Modifier and Type | Method and Description |
|---|---|
java.util.Collection |
findByDeploySpec(java.lang.Number pDeploySpecId)
Finds from runtime repository all
OdiScenarios that were created from given deploy spec. |
java.util.Collection |
findBySourceInterface(java.lang.Number pInterfaceId)
Finds from runtime repository all
OdiScenarios that were created from given interface. |
java.util.Collection |
findBySourceMapping(java.lang.Number pMappingId)
Finds from runtime repository all
OdiScenarios that were created from given mapping. |
java.util.Collection |
findBySourcePackage(java.lang.Number pPackageId)
Finds from runtime repository all
OdiScenarios that were created from given package. |
java.util.Collection |
findBySourceUserProcedure(java.lang.Number pUserProcedureId)
Finds from runtime repository all
OdiScenarios that were created from given user procedure. |
java.util.Collection |
findBySourceVariable(java.lang.Number pVariableId)
Finds from runtime repository all
OdiScenarios that were created from given variable. |
OdiScenario |
findByTag(Tag pScenarioTag)
Finds from the runtime repository
OdiScenario specified by
pScenerioTag. |
OdiScenario |
findLatestByName(java.lang.String pScenarioName)
Finds from the runtime repository the latest version of
OdiScenario specified by
pScenarioName |
OdiScenario |
findLatestByName(java.lang.String pScenarioName,
boolean pLatestByTimestamp)
Finds the latest version of
OdiScenario with specified name. |
OdiScenario |
findLatestBySourceInterface(java.lang.Number pInterfaceId,
boolean pLatestByTimestamp)
Finds the latest version of
OdiScenario that was created from specified interface. |
OdiScenario |
findLatestBySourceMapping(java.lang.Number pMappingId,
boolean pLatestByTimestamp)
Finds the latest version of
OdiScenario that was created from specified mapping. |
OdiScenario |
findLatestBySourcePackage(java.lang.Number pPackageId,
boolean pLatestByTimestamp)
Finds the latest version of
OdiScenario that was created from specified package. |
OdiScenario |
findLatestBySourceUserProcedure(java.lang.Number pUserProcedureId,
boolean pLatestByTimestamp)
Finds the latest version of
OdiScenario that was created from specified user procedure. |
OdiScenario |
findLatestBySourceVariable(java.lang.Number pVariableId,
boolean pLatestByTimestamp)
Finds the latest version of
OdiScenario that was created from specified variable. |
findAll, findByGlobalId, findById, findByIds, findRepositoryEntityByIdOdiScenario findByTag(Tag pScenarioTag)
OdiScenario specified by
pScenerioTag.pScenarioTag - tag to search forOdiScenario specified by Tag.java.util.Collection findBySourceVariable(java.lang.Number pVariableId)
OdiScenarios that were created from given variable.pVariableId - - ID of given variableOdiScenarios that were created from given variablejava.util.Collection findBySourceUserProcedure(java.lang.Number pUserProcedureId)
OdiScenarios that were created from given user procedure.pUserProcedureId - - ID of given user procedureOdiScenarios that were created from given user procedurejava.util.Collection findBySourceInterface(java.lang.Number pInterfaceId)
OdiScenarios that were created from given interface.pInterfaceId - - ID of given interfaceOdiScenarios that were created from given interfacejava.util.Collection findBySourcePackage(java.lang.Number pPackageId)
OdiScenarios that were created from given package.pPackageId - - ID of given packageOdiScenarios that were created from given packagejava.util.Collection findBySourceMapping(java.lang.Number pMappingId)
OdiScenarios that were created from given mapping.pMappingId - - ID of given mappingOdiScenarios that were created from given mappingjava.util.Collection findByDeploySpec(java.lang.Number pDeploySpecId)
OdiScenarios that were created from given deploy spec.pDeploySpecId - - ID of given deploy specOdiScenarios that were created from given deploys specOdiScenario findLatestByName(java.lang.String pScenarioName)
OdiScenario specified by
pScenarioNamepScenarioName - name of OdiScenarioOdiScenario specified by Name.OdiScenario findLatestByName(java.lang.String pScenarioName, boolean pLatestByTimestamp)
OdiScenario with specified name. Returns OdiScenario with the greatest version if pSortByTimestamp is false and the most recent.pScenarioName - name of OdiScenariopLatestByTimestamp - specifies search method to use: latest by version number or with the latest "last modified" dateOdiScenario instance or null if there are no any scenarios with specified nameOdiScenario findLatestBySourceVariable(java.lang.Number pVariableId, boolean pLatestByTimestamp)
OdiScenario that was created from specified variable. Returns OdiScenario with the greatest version if pSortByTimestamp is false and with the most recent lastDate otherwise.pVariableId - variable idpLatestByTimestamp - specifies search method to use: latest by version number or with the latest "last modified" dateOdiScenario instance or null if there are no scenarios created from specified variableOdiScenario findLatestBySourceUserProcedure(java.lang.Number pUserProcedureId, boolean pLatestByTimestamp)
OdiScenario that was created from specified user procedure. Returns OdiScenario with the greatest version if pSortByTimestamp is false and the most recent otherwise.pUserProcedureId - procedure idpLatestByTimestamp - specifies search method to use: latest by version number or with the latest "last modified" dateOdiScenario instance or null if there are no scenarios created from specified procedureOdiScenario findLatestBySourceInterface(java.lang.Number pInterfaceId, boolean pLatestByTimestamp)
OdiScenario that was created from specified interface. Returns OdiScenario with the greatest version if pSortByTimestamp is false and the most recent otherwise.pInterfaceId - interface idpLatestByTimestamp - specifies search method to use: latest by version number or with the latest "last modified" dateOdiScenario instance or null if there are no scenarios created from specified interfaceOdiScenario findLatestBySourcePackage(java.lang.Number pPackageId, boolean pLatestByTimestamp)
OdiScenario that was created from specified package. Returns OdiScenario with the greatest version if pSortByTimestamp is false and the most recent otherwise.pPackageId - package idpLatestByTimestamp - specifies search method to use: latest by version number or with the latest "last modified" dateOdiScenario instance or null if there are no scenarios created from specified packageOdiScenario findLatestBySourceMapping(java.lang.Number pMappingId, boolean pLatestByTimestamp)
OdiScenario that was created from specified mapping. Returns OdiScenario with the greatest version if pSortByTimestamp is false and the most recent otherwise.pMappingId - mapping idpLatestByTimestamp - specifies search method to use: latest by version number or with the latest "last modified" dateOdiScenario instance or null if there are no scenarios created from specified mapping