Interface WorkflowNamedParametersRepository

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      java.util.List<IridaWorkflowNamedParameters> findByWorkflowId​(java.util.UUID workflowId)
      Find all saved, named parameters for the specified workflow.
      • Methods inherited from interface org.springframework.data.repository.CrudRepository

        count, delete, deleteAll, deleteAll, deleteAllById, deleteById, existsById, findAll, findAllById, findById, save, saveAll
      • Methods inherited from interface org.springframework.data.jpa.repository.JpaSpecificationExecutor

        count, exists, findAll, findAll, findAll, findOne
      • Methods inherited from interface org.springframework.data.repository.PagingAndSortingRepository

        findAll, findAll
      • Methods inherited from interface org.springframework.data.repository.history.RevisionRepository

        findLastChangeRevision, findRevision, findRevisions, findRevisions
    • Method Detail

      • findByWorkflowId

        @Query("select p from IridaWorkflowNamedParameters p where p.workflowId = ?1")
        java.util.List<IridaWorkflowNamedParameters> findByWorkflowId​(java.util.UUID workflowId)
        Find all saved, named parameters for the specified workflow.
        Parameters:
        workflowId - the workflow ID to search for.
        Returns:
        the named parameters saved for the workflow.