public interface RuntimeAppDeploymentRepository extends org.springframework.data.jpa.repository.JpaRepository<RuntimeAppDeployment,Long>
Modifier and Type | Method and Description |
---|---|
void |
deleteInBatchByAppId(Long appId) |
List<RuntimeAppDeployment> |
findByAppDefinition(RuntimeAppDefinition definition) |
List<RuntimeAppDeployment> |
findByAppDefinitionId(Long appId) |
RuntimeAppDeployment |
findByDeploymentId(String deploymentId) |
deleteAllInBatch, deleteInBatch, findAll, findAll, findAll, flush, getOne, save, saveAndFlush
RuntimeAppDeployment findByDeploymentId(String deploymentId)
List<RuntimeAppDeployment> findByAppDefinition(RuntimeAppDefinition definition)
@Query(value="select app from RuntimeAppDeployment app where app.appDefinition.id = ?") List<RuntimeAppDeployment> findByAppDefinitionId(Long appId)
@Modifying @Query(value="delete from RuntimeAppDeployment app where app.appDefinition.id = ?") void deleteInBatchByAppId(Long appId)
Copyright © 2014–2015 Alfresco. All rights reserved.