@Repository public interface LaunchScenarioRepository extends org.springframework.data.repository.CrudRepository<LaunchScenario,Integer>
| Modifier and Type | Method and Description |
|---|---|
List<LaunchScenario> |
findByAppIdAndSandboxId(int appId,
String sandboxId) |
List<LaunchScenario> |
findBySandboxId(String sandboxId) |
List<LaunchScenario> |
findBySandboxIdAndCreatedBy(String sandboxId,
String createdBy) |
List<LaunchScenario> |
findBySandboxIdAndCreatedByOrVisibility(String sandboxId,
String createdBy,
Visibility visibility) |
List<LaunchScenario> |
findByUserPersonaIdAndSandboxId(int userPersonaId,
String sandboxId) |
List<LaunchScenario> findBySandboxId(@Param(value="sandboxId") String sandboxId)
List<LaunchScenario> findByAppIdAndSandboxId(@Param(value="appId") int appId, @Param(value="sandboxId") String sandboxId)
List<LaunchScenario> findByUserPersonaIdAndSandboxId(@Param(value="userPersonaId") int userPersonaId, @Param(value="sandboxId") String sandboxId)
List<LaunchScenario> findBySandboxIdAndCreatedByOrVisibility(@Param(value="sandboxId") String sandboxId, @Param(value="createdBy") String createdBy, @Param(value="visibility") Visibility visibility)
List<LaunchScenario> findBySandboxIdAndCreatedBy(@Param(value="sandboxId") String sandboxId, @Param(value="createdBy") String createdBy)
Copyright © 2014–2018 Healthcare Services Platform Consortium. All rights reserved.