Uses of Class
dev.dokimos.server.entity.DatasetVersion
Packages that use DatasetVersion
Package
Description
-
Uses of DatasetVersion in dev.dokimos.server.entity
Methods in dev.dokimos.server.entity that return DatasetVersionModifier and TypeMethodDescriptionDatasetItem.getDatasetVersion()ExperimentRun.getDatasetVersion()Methods in dev.dokimos.server.entity with parameters of type DatasetVersionModifier and TypeMethodDescriptionvoidExperimentRun.setDatasetVersion(DatasetVersion datasetVersion) Constructors in dev.dokimos.server.entity with parameters of type DatasetVersion -
Uses of DatasetVersion in dev.dokimos.server.repository
Methods in dev.dokimos.server.repository that return types with arguments of type DatasetVersionModifier and TypeMethodDescriptionDatasetVersionRepository.findByDatasetAndVersion(Dataset dataset, int version) DatasetVersionRepository.findByDatasetOrderByVersionDesc(Dataset dataset) DatasetVersionRepository.findFirstByDatasetOrderByVersionDesc(Dataset dataset) DatasetVersionRepository.findLatestPerDataset(List<Dataset> datasets) Returns the latest version row for every supplied dataset in a single query.Methods in dev.dokimos.server.repository with parameters of type DatasetVersionModifier and TypeMethodDescriptionorg.springframework.data.domain.Page<DatasetItem> DatasetItemRepository.findByDatasetVersionOrderByOrdinalAsc(DatasetVersion datasetVersion, org.springframework.data.domain.Pageable pageable) -
Uses of DatasetVersion in dev.dokimos.server.service
Methods in dev.dokimos.server.service that return DatasetVersionModifier and TypeMethodDescriptionDatasetService.createVersion(String datasetName, String description, List<CreateVersionRequest.ItemPayload> items, String createdBy, TenantScope scope) Creates a new immutable version of the dataset visible under the scope and inserts all items in one transaction.DatasetService.getLatestVersion(String datasetName, TenantScope scope) Returns the latest version of the dataset, visible under the scope.DatasetService.getVersion(String datasetName, int version, TenantScope scope) Returns a specific version of the dataset, visible under the scope.Methods in dev.dokimos.server.service with parameters of type DatasetVersionModifier and TypeMethodDescriptionorg.springframework.data.domain.Page<DatasetItem> DatasetService.listItems(DatasetVersion version, org.springframework.data.domain.Pageable pageable) Overload for callers that have already resolved aDatasetVersion; avoids the double-fetch path throughDatasetService.getVersion(java.lang.String, int, dev.dokimos.server.tenant.TenantScope).