-
Notifications
You must be signed in to change notification settings - Fork 171
/
Copy pathPathwayService.java
77 lines (47 loc) · 2.85 KB
/
PathwayService.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
package org.ohdsi.webapi.pathway;
import org.ohdsi.webapi.job.JobExecutionResource;
import org.ohdsi.webapi.pathway.domain.PathwayAnalysisEntity;
import org.ohdsi.webapi.pathway.domain.PathwayAnalysisGenerationEntity;
import org.ohdsi.webapi.pathway.dto.PathwayAnalysisDTO;
import org.ohdsi.webapi.pathway.dto.PathwayPopulationResultsDTO;
import org.ohdsi.webapi.pathway.dto.PathwayVersionFullDTO;
import org.ohdsi.webapi.pathway.dto.internal.PathwayAnalysisResult;
import org.ohdsi.webapi.shiro.annotations.PathwayAnalysisGenerationId;
import org.ohdsi.webapi.tag.domain.HasTags;
import org.ohdsi.webapi.tag.dto.TagNameListRequestDTO;
import org.ohdsi.webapi.versioning.domain.PathwayVersion;
import org.ohdsi.webapi.versioning.dto.VersionDTO;
import org.ohdsi.webapi.versioning.dto.VersionUpdateDTO;
import org.springframework.data.domain.Page;
import org.springframework.data.domain.Pageable;
import java.util.List;
import java.util.Map;
public interface PathwayService extends HasTags<Integer> {
PathwayAnalysisEntity create(PathwayAnalysisEntity pathwayAnalysisEntity);
PathwayAnalysisEntity importAnalysis(PathwayAnalysisEntity toImport);
String getNameForCopy(String dtoName);
String getNameWithSuffix(String dtoName);
Page<PathwayAnalysisEntity> getPage(final Pageable pageable);
int getCountPAWithSameName(Integer id, String name);
PathwayAnalysisEntity getById(Integer id);
PathwayAnalysisEntity update(PathwayAnalysisEntity pathwayAnalysisEntity);
void delete(Integer id);
Map<Integer, Integer> getEventCohortCodes(PathwayAnalysisEntity pathwayAnalysis);
String buildAnalysisSql(Long generationId, PathwayAnalysisEntity pathwayAnalysis, Integer sourceId);
String buildAnalysisSql(Long generationId, PathwayAnalysisEntity pathwayAnalysis, Integer sourceId, String cohortTable, String sessionId);
JobExecutionResource generatePathways(final Integer pathwayAnalysisId, final Integer sourceId);
List<PathwayAnalysisGenerationEntity> getPathwayGenerations(final Integer pathwayAnalysisId);
PathwayAnalysisGenerationEntity getGeneration(Long generationId);
PathwayAnalysisResult getResultingPathways(final Long generationId);
void cancelGeneration(Integer pathwayAnalysisId, Integer sourceId);
String findDesignByGenerationId(@PathwayAnalysisGenerationId final Long id);
List<VersionDTO> getVersions(long id);
PathwayVersionFullDTO getVersion(int id, int version);
VersionDTO updateVersion(int id, int version, VersionUpdateDTO updateDTO);
void deleteVersion(int id, int version);
PathwayAnalysisDTO copyAssetFromVersion(int id, int version);
PathwayVersion saveVersion(int id);
List<PathwayAnalysisDTO> listByTags(TagNameListRequestDTO requestDTO);
PathwayAnalysisDTO getByGenerationId(Integer id);
PathwayPopulationResultsDTO getGenerationResults(Long generationId);
}