public interface ModuleMetadataRepository extends DomainRepository<ModuleMetadata,ModuleMetadata.Id>
ModuleMetadata| Modifier and Type | Method and Description |
|---|---|
org.springframework.data.domain.Page<ModuleMetadata> |
findAllByContainerId(org.springframework.data.domain.Pageable pageable,
java.lang.String containerId)
Find paged
ModuleMetadata for all the modules deployed
into the given container. |
java.lang.Iterable<ModuleMetadata> |
findAllByContainerId(java.lang.String containerId)
Find all the modules that are deployed into the given container.
|
org.springframework.data.domain.Page<ModuleMetadata> |
findAllByModuleId(org.springframework.data.domain.Pageable pageable,
java.lang.String moduleId)
Find paged
ModuleMetadata for the modules of given moduleId. |
ModuleMetadata |
findOne(java.lang.String containerId,
java.lang.String moduleId)
Find
ModuleMetadata for the module that has the given module id and
deployed into given container. |
findAll, findAllcount, delete, delete, delete, deleteAll, exists, findAll, findAll, findOne, save, savefindAllInRangeorg.springframework.data.domain.Page<ModuleMetadata> findAllByContainerId(org.springframework.data.domain.Pageable pageable, java.lang.String containerId)
ModuleMetadata for all the modules deployed
into the given container.pageable - the pageable metadatacontainerId - the container IdModuleMetadatajava.lang.Iterable<ModuleMetadata> findAllByContainerId(java.lang.String containerId)
containerId - the containerIdModuleMetadata of the modules deployed into this container.org.springframework.data.domain.Page<ModuleMetadata> findAllByModuleId(org.springframework.data.domain.Pageable pageable, java.lang.String moduleId)
ModuleMetadata for the modules of given moduleId.pageable - the pageable metadatamoduleId - the module IdModuleMetadataModuleMetadata findOne(java.lang.String containerId, java.lang.String moduleId)
ModuleMetadata for the module that has the given module id and
deployed into given container.containerId - the container IdmoduleId - the moduleIdModuleMetadata