repo
stringclasses
1k values
file_url
stringlengths
96
373
file_path
stringlengths
11
294
content
stringlengths
0
32.8k
language
stringclasses
1 value
license
stringclasses
6 values
commit_sha
stringclasses
1k values
retrieved_at
stringdate
2026-01-04 14:45:56
2026-01-04 18:30:23
truncated
bool
2 classes
OHDSI/WebAPI
https://github.com/OHDSI/WebAPI/blob/b22d7bf02d98c0cf78c46801877368d6ecad2245/src/main/java/org/ohdsi/webapi/cohortsample/CohortSamplingService.java
src/main/java/org/ohdsi/webapi/cohortsample/CohortSamplingService.java
package org.ohdsi.webapi.cohortsample; import org.ohdsi.webapi.cohortsample.dto.CohortSampleDTO; import org.ohdsi.webapi.cohortsample.dto.SampleElementDTO; import org.ohdsi.webapi.cohortsample.dto.SampleParametersDTO; import org.ohdsi.webapi.job.JobTemplate; import org.ohdsi.webapi.service.AbstractDaoService; import o...
java
Apache-2.0
b22d7bf02d98c0cf78c46801877368d6ecad2245
2026-01-05T02:37:20.475642Z
false
OHDSI/WebAPI
https://github.com/OHDSI/WebAPI/blob/b22d7bf02d98c0cf78c46801877368d6ecad2245/src/main/java/org/ohdsi/webapi/cohortsample/SampleElement.java
src/main/java/org/ohdsi/webapi/cohortsample/SampleElement.java
package org.ohdsi.webapi.cohortsample; /** A single person that is part of a given sample. */ public class SampleElement { private int sampleId; private int rank; private long personId; private long genderConceptId; private int age; private Integer recordCount; public int getSampleId() { return sampleId...
java
Apache-2.0
b22d7bf02d98c0cf78c46801877368d6ecad2245
2026-01-05T02:37:20.475642Z
false
OHDSI/WebAPI
https://github.com/OHDSI/WebAPI/blob/b22d7bf02d98c0cf78c46801877368d6ecad2245/src/main/java/org/ohdsi/webapi/cohortsample/CohortSample.java
src/main/java/org/ohdsi/webapi/cohortsample/CohortSample.java
package org.ohdsi.webapi.cohortsample; import org.hibernate.annotations.GenericGenerator; import org.hibernate.annotations.Parameter; import org.ohdsi.webapi.model.CommonEntity; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.GeneratedValue; import javax.persistence.Id; impo...
java
Apache-2.0
b22d7bf02d98c0cf78c46801877368d6ecad2245
2026-01-05T02:37:20.475642Z
false
OHDSI/WebAPI
https://github.com/OHDSI/WebAPI/blob/b22d7bf02d98c0cf78c46801877368d6ecad2245/src/main/java/org/ohdsi/webapi/cohortsample/dto/SampleParametersDTO.java
src/main/java/org/ohdsi/webapi/cohortsample/dto/SampleParametersDTO.java
package org.ohdsi.webapi.cohortsample.dto; import com.fasterxml.jackson.annotation.JsonInclude; import com.fasterxml.jackson.annotation.JsonValue; import javax.ws.rs.BadRequestException; import java.util.ArrayList; import java.util.List; import java.util.Objects; import java.util.stream.Stream; public class SamplePa...
java
Apache-2.0
b22d7bf02d98c0cf78c46801877368d6ecad2245
2026-01-05T02:37:20.475642Z
false
OHDSI/WebAPI
https://github.com/OHDSI/WebAPI/blob/b22d7bf02d98c0cf78c46801877368d6ecad2245/src/main/java/org/ohdsi/webapi/cohortsample/dto/CohortSampleDTO.java
src/main/java/org/ohdsi/webapi/cohortsample/dto/CohortSampleDTO.java
package org.ohdsi.webapi.cohortsample.dto; import com.fasterxml.jackson.annotation.JsonInclude; import org.ohdsi.webapi.user.dto.UserDTO; import java.util.Date; import java.util.List; @JsonInclude(JsonInclude.Include.NON_NULL) public class CohortSampleDTO { /** Cohort sample ID. */ private int id; /** Cohort samp...
java
Apache-2.0
b22d7bf02d98c0cf78c46801877368d6ecad2245
2026-01-05T02:37:20.475642Z
false
OHDSI/WebAPI
https://github.com/OHDSI/WebAPI/blob/b22d7bf02d98c0cf78c46801877368d6ecad2245/src/main/java/org/ohdsi/webapi/cohortsample/dto/SampleElementDTO.java
src/main/java/org/ohdsi/webapi/cohortsample/dto/SampleElementDTO.java
package org.ohdsi.webapi.cohortsample.dto; import com.fasterxml.jackson.annotation.JsonInclude; @JsonInclude(JsonInclude.Include.NON_NULL) public class SampleElementDTO { /** * Sample ID that this element belongs to. May be null if this object is part of a * {@link CohortSampleDTO} object. */ private Integer ...
java
Apache-2.0
b22d7bf02d98c0cf78c46801877368d6ecad2245
2026-01-05T02:37:20.475642Z
false
OHDSI/WebAPI
https://github.com/OHDSI/WebAPI/blob/b22d7bf02d98c0cf78c46801877368d6ecad2245/src/main/java/org/ohdsi/webapi/cohortsample/dto/CohortSampleListDTO.java
src/main/java/org/ohdsi/webapi/cohortsample/dto/CohortSampleListDTO.java
package org.ohdsi.webapi.cohortsample.dto; import org.ohdsi.webapi.GenerationStatus; import java.util.List; public class CohortSampleListDTO { private int cohortDefinitionId; private int sourceId; private GenerationStatus generationStatus; private boolean isValid; private List<CohortSampleDTO> samples; public...
java
Apache-2.0
b22d7bf02d98c0cf78c46801877368d6ecad2245
2026-01-05T02:37:20.475642Z
false
OHDSI/WebAPI
https://github.com/OHDSI/WebAPI/blob/b22d7bf02d98c0cf78c46801877368d6ecad2245/src/main/java/org/ohdsi/webapi/helper/Guard.java
src/main/java/org/ohdsi/webapi/helper/Guard.java
package org.ohdsi.webapi.helper; /** * * @author gennadiy.anisimov */ public class Guard { public static Boolean isNullOrEmpty(String value) { return value == null || value.isEmpty(); } public static void checkNotEmpty(String value) { if (isNullOrEmpty(value)) throw new IllegalArgumentExce...
java
Apache-2.0
b22d7bf02d98c0cf78c46801877368d6ecad2245
2026-01-05T02:37:20.475642Z
false
OHDSI/WebAPI
https://github.com/OHDSI/WebAPI/blob/b22d7bf02d98c0cf78c46801877368d6ecad2245/src/main/java/org/ohdsi/webapi/security/AccessType.java
src/main/java/org/ohdsi/webapi/security/AccessType.java
package org.ohdsi.webapi.security; public enum AccessType { READ, WRITE }
java
Apache-2.0
b22d7bf02d98c0cf78c46801877368d6ecad2245
2026-01-05T02:37:20.475642Z
false
OHDSI/WebAPI
https://github.com/OHDSI/WebAPI/blob/b22d7bf02d98c0cf78c46801877368d6ecad2245/src/main/java/org/ohdsi/webapi/security/PermissionService.java
src/main/java/org/ohdsi/webapi/security/PermissionService.java
package org.ohdsi.webapi.security; import com.cosium.spring.data.jpa.entity.graph.domain.EntityGraph; import com.cosium.spring.data.jpa.entity.graph.domain.EntityGraphUtils; import org.apache.shiro.authz.UnauthorizedException; import org.ohdsi.webapi.model.CommonEntity; import org.ohdsi.webapi.security.model.EntityPer...
java
Apache-2.0
b22d7bf02d98c0cf78c46801877368d6ecad2245
2026-01-05T02:37:20.475642Z
false
OHDSI/WebAPI
https://github.com/OHDSI/WebAPI/blob/b22d7bf02d98c0cf78c46801877368d6ecad2245/src/main/java/org/ohdsi/webapi/security/SecurityConfigurationInfo.java
src/main/java/org/ohdsi/webapi/security/SecurityConfigurationInfo.java
package org.ohdsi.webapi.security; import org.ohdsi.info.ConfigurationInfo; import org.ohdsi.webapi.Constants; import org.ohdsi.webapi.shiro.management.AtlasRegularSecurity; import org.ohdsi.webapi.shiro.management.Security; import org.springframework.beans.factory.annotation.Value; import org.springframework.stereoty...
java
Apache-2.0
b22d7bf02d98c0cf78c46801877368d6ecad2245
2026-01-05T02:37:20.475642Z
false
OHDSI/WebAPI
https://github.com/OHDSI/WebAPI/blob/b22d7bf02d98c0cf78c46801877368d6ecad2245/src/main/java/org/ohdsi/webapi/security/SSOController.java
src/main/java/org/ohdsi/webapi/security/SSOController.java
/* * * Copyright 2018 Odysseus Data Services, inc. * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable ...
java
Apache-2.0
b22d7bf02d98c0cf78c46801877368d6ecad2245
2026-01-05T02:37:20.475642Z
false
OHDSI/WebAPI
https://github.com/OHDSI/WebAPI/blob/b22d7bf02d98c0cf78c46801877368d6ecad2245/src/main/java/org/ohdsi/webapi/security/PermissionController.java
src/main/java/org/ohdsi/webapi/security/PermissionController.java
package org.ohdsi.webapi.security; import org.ohdsi.webapi.security.dto.AccessRequestDTO; import org.ohdsi.webapi.security.dto.RoleDTO; import org.ohdsi.webapi.security.model.EntityType; import org.ohdsi.webapi.service.UserService; import org.ohdsi.webapi.shiro.Entities.PermissionEntity; import org.ohdsi.webapi.shiro....
java
Apache-2.0
b22d7bf02d98c0cf78c46801877368d6ecad2245
2026-01-05T02:37:20.475642Z
false
OHDSI/WebAPI
https://github.com/OHDSI/WebAPI/blob/b22d7bf02d98c0cf78c46801877368d6ecad2245/src/main/java/org/ohdsi/webapi/security/dto/AccessRequestDTO.java
src/main/java/org/ohdsi/webapi/security/dto/AccessRequestDTO.java
package org.ohdsi.webapi.security.dto; import org.ohdsi.webapi.security.AccessType; public class AccessRequestDTO { private AccessType accessType; public AccessType getAccessType() { return accessType; } public void setAccessType(AccessType accessType) { this.accessType = accessTy...
java
Apache-2.0
b22d7bf02d98c0cf78c46801877368d6ecad2245
2026-01-05T02:37:20.475642Z
false
OHDSI/WebAPI
https://github.com/OHDSI/WebAPI/blob/b22d7bf02d98c0cf78c46801877368d6ecad2245/src/main/java/org/ohdsi/webapi/security/dto/RoleDTO.java
src/main/java/org/ohdsi/webapi/security/dto/RoleDTO.java
package org.ohdsi.webapi.security.dto; public class RoleDTO { private Long id; private String name; public RoleDTO() { } public RoleDTO(Long id, String name) { this.id = id; this.name = name; } public Long getId() { return id; } public void setId(Long...
java
Apache-2.0
b22d7bf02d98c0cf78c46801877368d6ecad2245
2026-01-05T02:37:20.475642Z
false
OHDSI/WebAPI
https://github.com/OHDSI/WebAPI/blob/b22d7bf02d98c0cf78c46801877368d6ecad2245/src/main/java/org/ohdsi/webapi/security/model/CohortCharacterizationPermissionSchema.java
src/main/java/org/ohdsi/webapi/security/model/CohortCharacterizationPermissionSchema.java
package org.ohdsi.webapi.security.model; import org.springframework.stereotype.Component; import java.util.HashMap; import java.util.Map; @Component public class CohortCharacterizationPermissionSchema extends EntityPermissionSchema { private static Map<String, String> writePermissions = new HashMap<String, Stri...
java
Apache-2.0
b22d7bf02d98c0cf78c46801877368d6ecad2245
2026-01-05T02:37:20.475642Z
false
OHDSI/WebAPI
https://github.com/OHDSI/WebAPI/blob/b22d7bf02d98c0cf78c46801877368d6ecad2245/src/main/java/org/ohdsi/webapi/security/model/EntityPermissionSchema.java
src/main/java/org/ohdsi/webapi/security/model/EntityPermissionSchema.java
package org.ohdsi.webapi.security.model; import org.ohdsi.webapi.model.CommonEntity; import org.ohdsi.webapi.shiro.Entities.RoleEntity; import org.ohdsi.webapi.shiro.PermissionManager; import org.springframework.beans.factory.annotation.Autowired; import java.util.Collections; import java.util.HashMap; import java.ut...
java
Apache-2.0
b22d7bf02d98c0cf78c46801877368d6ecad2245
2026-01-05T02:37:20.475642Z
false
OHDSI/WebAPI
https://github.com/OHDSI/WebAPI/blob/b22d7bf02d98c0cf78c46801877368d6ecad2245/src/main/java/org/ohdsi/webapi/security/model/PathwayAnalysisPermissionSchema.java
src/main/java/org/ohdsi/webapi/security/model/PathwayAnalysisPermissionSchema.java
package org.ohdsi.webapi.security.model; import org.springframework.stereotype.Component; import java.util.HashMap; import java.util.Map; @Component public class PathwayAnalysisPermissionSchema extends EntityPermissionSchema { private static Map<String, String> writePermissions = new HashMap<String, String>() {...
java
Apache-2.0
b22d7bf02d98c0cf78c46801877368d6ecad2245
2026-01-05T02:37:20.475642Z
false
OHDSI/WebAPI
https://github.com/OHDSI/WebAPI/blob/b22d7bf02d98c0cf78c46801877368d6ecad2245/src/main/java/org/ohdsi/webapi/security/model/CohortDefinitionPermissionSchema.java
src/main/java/org/ohdsi/webapi/security/model/CohortDefinitionPermissionSchema.java
package org.ohdsi.webapi.security.model; import org.springframework.stereotype.Component; import java.util.HashMap; import java.util.Map; @Component public class CohortDefinitionPermissionSchema extends EntityPermissionSchema { private static Map<String, String> writePermissions = new HashMap<String, String>() ...
java
Apache-2.0
b22d7bf02d98c0cf78c46801877368d6ecad2245
2026-01-05T02:37:20.475642Z
false
OHDSI/WebAPI
https://github.com/OHDSI/WebAPI/blob/b22d7bf02d98c0cf78c46801877368d6ecad2245/src/main/java/org/ohdsi/webapi/security/model/TagPermissionSchema.java
src/main/java/org/ohdsi/webapi/security/model/TagPermissionSchema.java
package org.ohdsi.webapi.security.model; import org.springframework.stereotype.Component; import java.util.HashMap; import java.util.Map; @Component public class TagPermissionSchema extends EntityPermissionSchema { private static Map<String, String> writePermissions = new HashMap<String, String>() {{ pu...
java
Apache-2.0
b22d7bf02d98c0cf78c46801877368d6ecad2245
2026-01-05T02:37:20.475642Z
false
OHDSI/WebAPI
https://github.com/OHDSI/WebAPI/blob/b22d7bf02d98c0cf78c46801877368d6ecad2245/src/main/java/org/ohdsi/webapi/security/model/UserSimpleAuthorizationInfo.java
src/main/java/org/ohdsi/webapi/security/model/UserSimpleAuthorizationInfo.java
package org.ohdsi.webapi.security.model; import java.util.List; import java.util.Map; import org.apache.shiro.authz.Permission; import org.apache.shiro.authz.SimpleAuthorizationInfo; public class UserSimpleAuthorizationInfo extends SimpleAuthorizationInfo { private Long userId; private String login; private Ma...
java
Apache-2.0
b22d7bf02d98c0cf78c46801877368d6ecad2245
2026-01-05T02:37:20.475642Z
false
OHDSI/WebAPI
https://github.com/OHDSI/WebAPI/blob/b22d7bf02d98c0cf78c46801877368d6ecad2245/src/main/java/org/ohdsi/webapi/security/model/IncidenceRatePermissionSchema.java
src/main/java/org/ohdsi/webapi/security/model/IncidenceRatePermissionSchema.java
package org.ohdsi.webapi.security.model; import org.springframework.stereotype.Component; import java.util.HashMap; import java.util.Map; @Component public class IncidenceRatePermissionSchema extends EntityPermissionSchema { private static Map<String, String> writePermissions = new HashMap<String, String>() {{ ...
java
Apache-2.0
b22d7bf02d98c0cf78c46801877368d6ecad2245
2026-01-05T02:37:20.475642Z
false
OHDSI/WebAPI
https://github.com/OHDSI/WebAPI/blob/b22d7bf02d98c0cf78c46801877368d6ecad2245/src/main/java/org/ohdsi/webapi/security/model/ReusablePermissionSchema.java
src/main/java/org/ohdsi/webapi/security/model/ReusablePermissionSchema.java
package org.ohdsi.webapi.security.model; import org.springframework.stereotype.Component; import java.util.HashMap; import java.util.Map; @Component public class ReusablePermissionSchema extends EntityPermissionSchema { private static Map<String, String> writePermissions = new HashMap<String, String>() {{ ...
java
Apache-2.0
b22d7bf02d98c0cf78c46801877368d6ecad2245
2026-01-05T02:37:20.475642Z
false
OHDSI/WebAPI
https://github.com/OHDSI/WebAPI/blob/b22d7bf02d98c0cf78c46801877368d6ecad2245/src/main/java/org/ohdsi/webapi/security/model/EstimationPermissionSchema.java
src/main/java/org/ohdsi/webapi/security/model/EstimationPermissionSchema.java
package org.ohdsi.webapi.security.model; import org.springframework.stereotype.Component; import java.util.HashMap; import java.util.Map; @Component public class EstimationPermissionSchema extends EntityPermissionSchema { private static Map<String, String> writePermissions = new HashMap<String, String>() {{ ...
java
Apache-2.0
b22d7bf02d98c0cf78c46801877368d6ecad2245
2026-01-05T02:37:20.475642Z
false
OHDSI/WebAPI
https://github.com/OHDSI/WebAPI/blob/b22d7bf02d98c0cf78c46801877368d6ecad2245/src/main/java/org/ohdsi/webapi/security/model/EntityPermissionSchemaResolver.java
src/main/java/org/ohdsi/webapi/security/model/EntityPermissionSchemaResolver.java
package org.ohdsi.webapi.security.model; import org.ohdsi.webapi.model.CommonEntity; import org.springframework.stereotype.Component; import java.util.Arrays; import java.util.HashMap; import java.util.List; import java.util.Map; @Component public class EntityPermissionSchemaResolver { private static Map<Entity...
java
Apache-2.0
b22d7bf02d98c0cf78c46801877368d6ecad2245
2026-01-05T02:37:20.475642Z
false
OHDSI/WebAPI
https://github.com/OHDSI/WebAPI/blob/b22d7bf02d98c0cf78c46801877368d6ecad2245/src/main/java/org/ohdsi/webapi/security/model/ConceptSetPermissionSchema.java
src/main/java/org/ohdsi/webapi/security/model/ConceptSetPermissionSchema.java
package org.ohdsi.webapi.security.model; import org.springframework.stereotype.Component; import java.util.HashMap; import java.util.Map; @Component public class ConceptSetPermissionSchema extends EntityPermissionSchema { private static Map<String, String> writePermissions = new HashMap<String, String>() {{ ...
java
Apache-2.0
b22d7bf02d98c0cf78c46801877368d6ecad2245
2026-01-05T02:37:20.475642Z
false
OHDSI/WebAPI
https://github.com/OHDSI/WebAPI/blob/b22d7bf02d98c0cf78c46801877368d6ecad2245/src/main/java/org/ohdsi/webapi/security/model/EntityType.java
src/main/java/org/ohdsi/webapi/security/model/EntityType.java
package org.ohdsi.webapi.security.model; import org.ohdsi.webapi.cohortcharacterization.domain.CohortCharacterizationEntity; import org.ohdsi.webapi.cohortdefinition.CohortDefinition; import org.ohdsi.webapi.cohortsample.CohortSample; import org.ohdsi.webapi.conceptset.ConceptSet; import org.ohdsi.webapi.estimation.Es...
java
Apache-2.0
b22d7bf02d98c0cf78c46801877368d6ecad2245
2026-01-05T02:37:20.475642Z
false
OHDSI/WebAPI
https://github.com/OHDSI/WebAPI/blob/b22d7bf02d98c0cf78c46801877368d6ecad2245/src/main/java/org/ohdsi/webapi/security/model/ToolPermissionSchema.java
src/main/java/org/ohdsi/webapi/security/model/ToolPermissionSchema.java
package org.ohdsi.webapi.security.model; import org.springframework.stereotype.Component; import java.util.HashMap; import java.util.Map; @Component public class ToolPermissionSchema extends EntityPermissionSchema { private static Map<String, String> writePermissions = new HashMap<String, String>() {{ pu...
java
Apache-2.0
b22d7bf02d98c0cf78c46801877368d6ecad2245
2026-01-05T02:37:20.475642Z
false
OHDSI/WebAPI
https://github.com/OHDSI/WebAPI/blob/b22d7bf02d98c0cf78c46801877368d6ecad2245/src/main/java/org/ohdsi/webapi/security/model/CohortSamplePermissionSchema.java
src/main/java/org/ohdsi/webapi/security/model/CohortSamplePermissionSchema.java
package org.ohdsi.webapi.security.model; import org.springframework.stereotype.Component; import java.util.HashMap; import java.util.Map; @Component public class CohortSamplePermissionSchema extends EntityPermissionSchema { private static Map<String, String> readPermissions = new HashMap<String, String>() {{ ...
java
Apache-2.0
b22d7bf02d98c0cf78c46801877368d6ecad2245
2026-01-05T02:37:20.475642Z
false
OHDSI/WebAPI
https://github.com/OHDSI/WebAPI/blob/b22d7bf02d98c0cf78c46801877368d6ecad2245/src/main/java/org/ohdsi/webapi/security/model/SourcePermissionSchema.java
src/main/java/org/ohdsi/webapi/security/model/SourcePermissionSchema.java
package org.ohdsi.webapi.security.model; import org.ohdsi.webapi.model.CommonEntity; import org.ohdsi.webapi.shiro.Entities.RoleEntity; import org.ohdsi.webapi.source.Source; import org.springframework.stereotype.Component; import java.util.HashMap; import java.util.Map; import static org.ohdsi.webapi.shiro.manageme...
java
Apache-2.0
b22d7bf02d98c0cf78c46801877368d6ecad2245
2026-01-05T02:37:20.475642Z
false
OHDSI/WebAPI
https://github.com/OHDSI/WebAPI/blob/b22d7bf02d98c0cf78c46801877368d6ecad2245/src/main/java/org/ohdsi/webapi/security/model/PredictionPermissionSchema.java
src/main/java/org/ohdsi/webapi/security/model/PredictionPermissionSchema.java
package org.ohdsi.webapi.security.model; import org.springframework.stereotype.Component; import java.util.HashMap; import java.util.Map; @Component public class PredictionPermissionSchema extends EntityPermissionSchema { private static Map<String, String> writePermissions = new HashMap<String, String>() {{ ...
java
Apache-2.0
b22d7bf02d98c0cf78c46801877368d6ecad2245
2026-01-05T02:37:20.475642Z
false
OHDSI/WebAPI
https://github.com/OHDSI/WebAPI/blob/b22d7bf02d98c0cf78c46801877368d6ecad2245/src/main/java/org/ohdsi/webapi/security/model/FeatureAnalysisPermissionSchema.java
src/main/java/org/ohdsi/webapi/security/model/FeatureAnalysisPermissionSchema.java
package org.ohdsi.webapi.security.model; import org.springframework.stereotype.Component; import java.util.HashMap; import java.util.Map; @Component public class FeatureAnalysisPermissionSchema extends EntityPermissionSchema { private static Map<String, String> writePermissions = new HashMap<String, String>() {...
java
Apache-2.0
b22d7bf02d98c0cf78c46801877368d6ecad2245
2026-01-05T02:37:20.475642Z
false
OHDSI/WebAPI
https://github.com/OHDSI/WebAPI/blob/b22d7bf02d98c0cf78c46801877368d6ecad2245/src/main/java/org/ohdsi/webapi/security/converter/RoleEntityToRoleDTOConverter.java
src/main/java/org/ohdsi/webapi/security/converter/RoleEntityToRoleDTOConverter.java
package org.ohdsi.webapi.security.converter; import org.ohdsi.webapi.converter.BaseConversionServiceAwareConverter; import org.ohdsi.webapi.security.dto.RoleDTO; import org.ohdsi.webapi.shiro.Entities.RoleEntity; import org.springframework.stereotype.Component; @Component public class RoleEntityToRoleDTOConverter ext...
java
Apache-2.0
b22d7bf02d98c0cf78c46801877368d6ecad2245
2026-01-05T02:37:20.475642Z
false
OHDSI/WebAPI
https://github.com/OHDSI/WebAPI/blob/b22d7bf02d98c0cf78c46801877368d6ecad2245/src/main/java/org/ohdsi/webapi/security/config/HibernateListenerConfigurer.java
src/main/java/org/ohdsi/webapi/security/config/HibernateListenerConfigurer.java
package org.ohdsi.webapi.security.config; import org.hibernate.event.service.spi.EventListenerRegistry; import org.hibernate.event.spi.EventType; import org.hibernate.internal.SessionFactoryImpl; import org.ohdsi.webapi.security.listener.EntityDeleteEventListener; import org.ohdsi.webapi.security.listener.EntityInsert...
java
Apache-2.0
b22d7bf02d98c0cf78c46801877368d6ecad2245
2026-01-05T02:37:20.475642Z
false
OHDSI/WebAPI
https://github.com/OHDSI/WebAPI/blob/b22d7bf02d98c0cf78c46801877368d6ecad2245/src/main/java/org/ohdsi/webapi/security/listener/EntityInsertEventListener.java
src/main/java/org/ohdsi/webapi/security/listener/EntityInsertEventListener.java
package org.ohdsi.webapi.security.listener; import org.hibernate.event.spi.PreInsertEvent; import org.hibernate.event.spi.PreInsertEventListener; import org.ohdsi.webapi.model.CommonEntity; import org.ohdsi.webapi.security.model.EntityPermissionSchema; import org.ohdsi.webapi.security.model.EntityPermissionSchemaResol...
java
Apache-2.0
b22d7bf02d98c0cf78c46801877368d6ecad2245
2026-01-05T02:37:20.475642Z
false
OHDSI/WebAPI
https://github.com/OHDSI/WebAPI/blob/b22d7bf02d98c0cf78c46801877368d6ecad2245/src/main/java/org/ohdsi/webapi/security/listener/EntityDeleteEventListener.java
src/main/java/org/ohdsi/webapi/security/listener/EntityDeleteEventListener.java
package org.ohdsi.webapi.security.listener; import org.hibernate.event.spi.PostDeleteEvent; import org.hibernate.event.spi.PostDeleteEventListener; import org.hibernate.persister.entity.EntityPersister; import org.ohdsi.webapi.model.CommonEntity; import org.ohdsi.webapi.security.model.EntityPermissionSchema; import or...
java
Apache-2.0
b22d7bf02d98c0cf78c46801877368d6ecad2245
2026-01-05T02:37:20.475642Z
false
OHDSI/WebAPI
https://github.com/OHDSI/WebAPI/blob/b22d7bf02d98c0cf78c46801877368d6ecad2245/src/main/java/org/ohdsi/webapi/conceptset/ConceptSetComparison.java
src/main/java/org/ohdsi/webapi/conceptset/ConceptSetComparison.java
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package org.ohdsi.webapi.conceptset; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annota...
java
Apache-2.0
b22d7bf02d98c0cf78c46801877368d6ecad2245
2026-01-05T02:37:20.475642Z
false
OHDSI/WebAPI
https://github.com/OHDSI/WebAPI/blob/b22d7bf02d98c0cf78c46801877368d6ecad2245/src/main/java/org/ohdsi/webapi/conceptset/ConceptSetOptimizationResult.java
src/main/java/org/ohdsi/webapi/conceptset/ConceptSetOptimizationResult.java
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package org.ohdsi.webapi.conceptset; import org.ohdsi.circe.vocabulary.ConceptSetExpression; /** * * @author Anthony Sena <https://...
java
Apache-2.0
b22d7bf02d98c0cf78c46801877368d6ecad2245
2026-01-05T02:37:20.475642Z
false
OHDSI/WebAPI
https://github.com/OHDSI/WebAPI/blob/b22d7bf02d98c0cf78c46801877368d6ecad2245/src/main/java/org/ohdsi/webapi/conceptset/ConceptSetItemRepository.java
src/main/java/org/ohdsi/webapi/conceptset/ConceptSetItemRepository.java
/* * Copyright 2015 fdefalco. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to i...
java
Apache-2.0
b22d7bf02d98c0cf78c46801877368d6ecad2245
2026-01-05T02:37:20.475642Z
false
OHDSI/WebAPI
https://github.com/OHDSI/WebAPI/blob/b22d7bf02d98c0cf78c46801877368d6ecad2245/src/main/java/org/ohdsi/webapi/conceptset/ConceptSetGenerationInfoRepository.java
src/main/java/org/ohdsi/webapi/conceptset/ConceptSetGenerationInfoRepository.java
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package org.ohdsi.webapi.conceptset; import java.util.List; import org.springframework.data.jpa.repository.Query; import org.springfra...
java
Apache-2.0
b22d7bf02d98c0cf78c46801877368d6ecad2245
2026-01-05T02:37:20.475642Z
false
OHDSI/WebAPI
https://github.com/OHDSI/WebAPI/blob/b22d7bf02d98c0cf78c46801877368d6ecad2245/src/main/java/org/ohdsi/webapi/conceptset/ConceptSetItem.java
src/main/java/org/ohdsi/webapi/conceptset/ConceptSetItem.java
/* * Copyright 2015 fdefalco. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to i...
java
Apache-2.0
b22d7bf02d98c0cf78c46801877368d6ecad2245
2026-01-05T02:37:20.475642Z
false
OHDSI/WebAPI
https://github.com/OHDSI/WebAPI/blob/b22d7bf02d98c0cf78c46801877368d6ecad2245/src/main/java/org/ohdsi/webapi/conceptset/ConceptSetGenerationInfoKey.java
src/main/java/org/ohdsi/webapi/conceptset/ConceptSetGenerationInfoKey.java
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package org.ohdsi.webapi.conceptset; import java.io.Serializable; /** * * @author Anthony Sena <https://github.com/ohdsi> */ publi...
java
Apache-2.0
b22d7bf02d98c0cf78c46801877368d6ecad2245
2026-01-05T02:37:20.475642Z
false
OHDSI/WebAPI
https://github.com/OHDSI/WebAPI/blob/b22d7bf02d98c0cf78c46801877368d6ecad2245/src/main/java/org/ohdsi/webapi/conceptset/ConceptSetGenerationInfo.java
src/main/java/org/ohdsi/webapi/conceptset/ConceptSetGenerationInfo.java
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package org.ohdsi.webapi.conceptset; import java.io.Serializable; import java.util.Date; import javax.persistence.Column; import javax...
java
Apache-2.0
b22d7bf02d98c0cf78c46801877368d6ecad2245
2026-01-05T02:37:20.475642Z
false
OHDSI/WebAPI
https://github.com/OHDSI/WebAPI/blob/b22d7bf02d98c0cf78c46801877368d6ecad2245/src/main/java/org/ohdsi/webapi/conceptset/ConceptSetExport.java
src/main/java/org/ohdsi/webapi/conceptset/ConceptSetExport.java
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package org.ohdsi.webapi.conceptset; import com.fasterxml.jackson.annotation.JsonProperty; import java.util.Collection; import org.o...
java
Apache-2.0
b22d7bf02d98c0cf78c46801877368d6ecad2245
2026-01-05T02:37:20.475642Z
false
OHDSI/WebAPI
https://github.com/OHDSI/WebAPI/blob/b22d7bf02d98c0cf78c46801877368d6ecad2245/src/main/java/org/ohdsi/webapi/conceptset/ConceptSetGenerationTypeConverter.java
src/main/java/org/ohdsi/webapi/conceptset/ConceptSetGenerationTypeConverter.java
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package org.ohdsi.webapi.conceptset; import javax.persistence.AttributeConverter; import javax.persistence.Converter; /** * * @auth...
java
Apache-2.0
b22d7bf02d98c0cf78c46801877368d6ecad2245
2026-01-05T02:37:20.475642Z
false
OHDSI/WebAPI
https://github.com/OHDSI/WebAPI/blob/b22d7bf02d98c0cf78c46801877368d6ecad2245/src/main/java/org/ohdsi/webapi/conceptset/ConceptSetCrossReferenceImpl.java
src/main/java/org/ohdsi/webapi/conceptset/ConceptSetCrossReferenceImpl.java
package org.ohdsi.webapi.conceptset; import org.ohdsi.analysis.ConceptSetCrossReference; public class ConceptSetCrossReferenceImpl implements ConceptSetCrossReference { private Integer conceptSetId = null; private String targetName = null; private Integer targetIndex = 0; private String propertyName = null; ...
java
Apache-2.0
b22d7bf02d98c0cf78c46801877368d6ecad2245
2026-01-05T02:37:20.475642Z
false
OHDSI/WebAPI
https://github.com/OHDSI/WebAPI/blob/b22d7bf02d98c0cf78c46801877368d6ecad2245/src/main/java/org/ohdsi/webapi/conceptset/ConceptSet.java
src/main/java/org/ohdsi/webapi/conceptset/ConceptSet.java
/* * Copyright 2015 fdefalco. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to i...
java
Apache-2.0
b22d7bf02d98c0cf78c46801877368d6ecad2245
2026-01-05T02:37:20.475642Z
false
OHDSI/WebAPI
https://github.com/OHDSI/WebAPI/blob/b22d7bf02d98c0cf78c46801877368d6ecad2245/src/main/java/org/ohdsi/webapi/conceptset/ConceptSetGenerationType.java
src/main/java/org/ohdsi/webapi/conceptset/ConceptSetGenerationType.java
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package org.ohdsi.webapi.conceptset; /** * * @author Anthony Sena <https://github.com/ohdsi> */ public enum ConceptSetGenerationTyp...
java
Apache-2.0
b22d7bf02d98c0cf78c46801877368d6ecad2245
2026-01-05T02:37:20.475642Z
false
OHDSI/WebAPI
https://github.com/OHDSI/WebAPI/blob/b22d7bf02d98c0cf78c46801877368d6ecad2245/src/main/java/org/ohdsi/webapi/conceptset/ConceptSetRepository.java
src/main/java/org/ohdsi/webapi/conceptset/ConceptSetRepository.java
/* * Copyright 2015 fdefalco. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to i...
java
Apache-2.0
b22d7bf02d98c0cf78c46801877368d6ecad2245
2026-01-05T02:37:20.475642Z
false
OHDSI/WebAPI
https://github.com/OHDSI/WebAPI/blob/b22d7bf02d98c0cf78c46801877368d6ecad2245/src/main/java/org/ohdsi/webapi/conceptset/dto/ConceptSetVersionFullDTO.java
src/main/java/org/ohdsi/webapi/conceptset/dto/ConceptSetVersionFullDTO.java
package org.ohdsi.webapi.conceptset.dto; import org.ohdsi.webapi.conceptset.ConceptSetItem; import org.ohdsi.webapi.service.dto.ConceptSetDTO; import org.ohdsi.webapi.versioning.dto.VersionFullDTO; import java.util.List; public class ConceptSetVersionFullDTO extends VersionFullDTO<ConceptSetDTO> { private List<C...
java
Apache-2.0
b22d7bf02d98c0cf78c46801877368d6ecad2245
2026-01-05T02:37:20.475642Z
false
OHDSI/WebAPI
https://github.com/OHDSI/WebAPI/blob/b22d7bf02d98c0cf78c46801877368d6ecad2245/src/main/java/org/ohdsi/webapi/conceptset/converter/CirceConceptSetToConceptSetItemConverter.java
src/main/java/org/ohdsi/webapi/conceptset/converter/CirceConceptSetToConceptSetItemConverter.java
package org.ohdsi.webapi.conceptset.converter; import org.ohdsi.webapi.conceptset.ConceptSetItem; import org.ohdsi.webapi.converter.BaseConversionServiceAwareConverter; import org.springframework.stereotype.Component; @Component public class CirceConceptSetToConceptSetItemConverter<T extends org.ohdsi.circe.vocabular...
java
Apache-2.0
b22d7bf02d98c0cf78c46801877368d6ecad2245
2026-01-05T02:37:20.475642Z
false
OHDSI/WebAPI
https://github.com/OHDSI/WebAPI/blob/b22d7bf02d98c0cf78c46801877368d6ecad2245/src/main/java/org/ohdsi/webapi/conceptset/converter/ConceptSetToConceptSetVersionConverter.java
src/main/java/org/ohdsi/webapi/conceptset/converter/ConceptSetToConceptSetVersionConverter.java
package org.ohdsi.webapi.conceptset.converter; import com.fasterxml.jackson.core.JsonProcessingException; import com.fasterxml.jackson.databind.ObjectMapper; import org.ohdsi.webapi.conceptset.ConceptSet; import org.ohdsi.webapi.conceptset.ConceptSetItem; import org.ohdsi.webapi.conceptset.ConceptSetItemRepository; im...
java
Apache-2.0
b22d7bf02d98c0cf78c46801877368d6ecad2245
2026-01-05T02:37:20.475642Z
false
OHDSI/WebAPI
https://github.com/OHDSI/WebAPI/blob/b22d7bf02d98c0cf78c46801877368d6ecad2245/src/main/java/org/ohdsi/webapi/conceptset/converter/ConceptSetVersionToConceptSetVersionFullDTOConverter.java
src/main/java/org/ohdsi/webapi/conceptset/converter/ConceptSetVersionToConceptSetVersionFullDTOConverter.java
package org.ohdsi.webapi.conceptset.converter; import com.fasterxml.jackson.core.JsonProcessingException; import com.fasterxml.jackson.core.type.TypeReference; import com.fasterxml.jackson.databind.ObjectMapper; import org.ohdsi.webapi.conceptset.ConceptSet; import org.ohdsi.webapi.conceptset.ConceptSetItem; import or...
java
Apache-2.0
b22d7bf02d98c0cf78c46801877368d6ecad2245
2026-01-05T02:37:20.475642Z
false
OHDSI/WebAPI
https://github.com/OHDSI/WebAPI/blob/b22d7bf02d98c0cf78c46801877368d6ecad2245/src/main/java/org/ohdsi/webapi/conceptset/converter/ConceptSetToExportConverter.java
src/main/java/org/ohdsi/webapi/conceptset/converter/ConceptSetToExportConverter.java
package org.ohdsi.webapi.conceptset.converter; import com.odysseusinc.arachne.commons.converter.BaseConvertionServiceAwareConverter; import org.ohdsi.circe.cohortdefinition.ConceptSet; import org.ohdsi.webapi.conceptset.ConceptSetExport; import org.springframework.stereotype.Component; @Component public class Concept...
java
Apache-2.0
b22d7bf02d98c0cf78c46801877368d6ecad2245
2026-01-05T02:37:20.475642Z
false
OHDSI/WebAPI
https://github.com/OHDSI/WebAPI/blob/b22d7bf02d98c0cf78c46801877368d6ecad2245/src/main/java/org/ohdsi/webapi/conceptset/annotation/ConceptSetAnnotationRepository.java
src/main/java/org/ohdsi/webapi/conceptset/annotation/ConceptSetAnnotationRepository.java
package org.ohdsi.webapi.conceptset.annotation; import java.util.List; import java.util.Optional; import org.springframework.data.jpa.repository.JpaRepository; import org.springframework.data.jpa.repository.Query; public interface ConceptSetAnnotationRepository extends JpaRepository<ConceptSetAnnotation, Integer> { ...
java
Apache-2.0
b22d7bf02d98c0cf78c46801877368d6ecad2245
2026-01-05T02:37:20.475642Z
false
OHDSI/WebAPI
https://github.com/OHDSI/WebAPI/blob/b22d7bf02d98c0cf78c46801877368d6ecad2245/src/main/java/org/ohdsi/webapi/conceptset/annotation/ConceptSetAnnotation.java
src/main/java/org/ohdsi/webapi/conceptset/annotation/ConceptSetAnnotation.java
package org.ohdsi.webapi.conceptset.annotation; import org.hibernate.annotations.GenericGenerator; import org.hibernate.annotations.Parameter; import org.ohdsi.webapi.model.CommonEntity; import org.ohdsi.webapi.shiro.Entities.UserEntity; import javax.persistence.Column; import javax.persistence.Entity; import javax.p...
java
Apache-2.0
b22d7bf02d98c0cf78c46801877368d6ecad2245
2026-01-05T02:37:20.475642Z
false
OHDSI/WebAPI
https://github.com/OHDSI/WebAPI/blob/b22d7bf02d98c0cf78c46801877368d6ecad2245/src/main/java/org/ohdsi/webapi/audittrail/AuditTrailAspect.java
src/main/java/org/ohdsi/webapi/audittrail/AuditTrailAspect.java
package org.ohdsi.webapi.audittrail; import io.jsonwebtoken.ExpiredJwtException; import io.jsonwebtoken.SignatureException; import org.aspectj.lang.ProceedingJoinPoint; import org.aspectj.lang.annotation.Around; import org.aspectj.lang.annotation.Aspect; import org.aspectj.lang.annotation.Pointcut; import org.ohdsi.we...
java
Apache-2.0
b22d7bf02d98c0cf78c46801877368d6ecad2245
2026-01-05T02:37:20.475642Z
false
OHDSI/WebAPI
https://github.com/OHDSI/WebAPI/blob/b22d7bf02d98c0cf78c46801877368d6ecad2245/src/main/java/org/ohdsi/webapi/audittrail/AuditTrailServiceImpl.java
src/main/java/org/ohdsi/webapi/audittrail/AuditTrailServiceImpl.java
package org.ohdsi.webapi.audittrail; import com.cloudbees.syslog.Facility; import com.cloudbees.syslog.Severity; import com.cloudbees.syslog.SyslogMessage; import org.apache.commons.lang3.StringUtils; import org.ohdsi.webapi.Constants; import org.ohdsi.webapi.cohortsample.dto.CohortSampleDTO; import org.slf4j.Logger; ...
java
Apache-2.0
b22d7bf02d98c0cf78c46801877368d6ecad2245
2026-01-05T02:37:20.475642Z
false
OHDSI/WebAPI
https://github.com/OHDSI/WebAPI/blob/b22d7bf02d98c0cf78c46801877368d6ecad2245/src/main/java/org/ohdsi/webapi/audittrail/AuditTrailEntry.java
src/main/java/org/ohdsi/webapi/audittrail/AuditTrailEntry.java
package org.ohdsi.webapi.audittrail; import org.ohdsi.webapi.shiro.Entities.UserEntity; public class AuditTrailEntry { private String currentUser; private String remoteHost; private String actionLocation; private String sessionId; private String requestMethod; private String requestUri; pr...
java
Apache-2.0
b22d7bf02d98c0cf78c46801877368d6ecad2245
2026-01-05T02:37:20.475642Z
false
OHDSI/WebAPI
https://github.com/OHDSI/WebAPI/blob/b22d7bf02d98c0cf78c46801877368d6ecad2245/src/main/java/org/ohdsi/webapi/audittrail/AuditTrailService.java
src/main/java/org/ohdsi/webapi/audittrail/AuditTrailService.java
package org.ohdsi.webapi.audittrail; import org.springframework.batch.core.JobExecution; public interface AuditTrailService { void logSuccessfulLogin(String login, String sessionId, String remoteHost); void logFailedLogin(String login, String remoteHost); void logSuccessfulLogout(String login); void...
java
Apache-2.0
b22d7bf02d98c0cf78c46801877368d6ecad2245
2026-01-05T02:37:20.475642Z
false
OHDSI/WebAPI
https://github.com/OHDSI/WebAPI/blob/b22d7bf02d98c0cf78c46801877368d6ecad2245/src/main/java/org/ohdsi/webapi/audittrail/events/AuditTrailLoginFailedEvent.java
src/main/java/org/ohdsi/webapi/audittrail/events/AuditTrailLoginFailedEvent.java
package org.ohdsi.webapi.audittrail.events; import org.springframework.context.ApplicationEvent; public class AuditTrailLoginFailedEvent extends ApplicationEvent { private final String login; private final String remoteHost; public AuditTrailLoginFailedEvent(final Object source, ...
java
Apache-2.0
b22d7bf02d98c0cf78c46801877368d6ecad2245
2026-01-05T02:37:20.475642Z
false
OHDSI/WebAPI
https://github.com/OHDSI/WebAPI/blob/b22d7bf02d98c0cf78c46801877368d6ecad2245/src/main/java/org/ohdsi/webapi/audittrail/events/AuditTrailSessionCreatedEvent.java
src/main/java/org/ohdsi/webapi/audittrail/events/AuditTrailSessionCreatedEvent.java
package org.ohdsi.webapi.audittrail.events; import com.odysseusinc.logging.LogLevel; import org.springframework.context.ApplicationEvent; public class AuditTrailSessionCreatedEvent extends ApplicationEvent { private final String login; private final String sessionId; private final String remoteHost; ...
java
Apache-2.0
b22d7bf02d98c0cf78c46801877368d6ecad2245
2026-01-05T02:37:20.475642Z
false
OHDSI/WebAPI
https://github.com/OHDSI/WebAPI/blob/b22d7bf02d98c0cf78c46801877368d6ecad2245/src/main/java/org/ohdsi/webapi/audittrail/listeners/AuditTrailFailedLogoutListener.java
src/main/java/org/ohdsi/webapi/audittrail/listeners/AuditTrailFailedLogoutListener.java
package org.ohdsi.webapi.audittrail.listeners; import com.odysseusinc.logging.event.FailedLogoutEvent; import org.ohdsi.webapi.audittrail.AuditTrailService; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.context.ApplicationListener; import org.springframework.stereotype.Compo...
java
Apache-2.0
b22d7bf02d98c0cf78c46801877368d6ecad2245
2026-01-05T02:37:20.475642Z
false
OHDSI/WebAPI
https://github.com/OHDSI/WebAPI/blob/b22d7bf02d98c0cf78c46801877368d6ecad2245/src/main/java/org/ohdsi/webapi/audittrail/listeners/AuditTrailSuccessLogoutListener.java
src/main/java/org/ohdsi/webapi/audittrail/listeners/AuditTrailSuccessLogoutListener.java
package org.ohdsi.webapi.audittrail.listeners; import com.odysseusinc.logging.event.SuccessLogoutEvent; import org.ohdsi.webapi.audittrail.AuditTrailService; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.context.ApplicationListener; import org.springframework.stereotype.Comp...
java
Apache-2.0
b22d7bf02d98c0cf78c46801877368d6ecad2245
2026-01-05T02:37:20.475642Z
false
OHDSI/WebAPI
https://github.com/OHDSI/WebAPI/blob/b22d7bf02d98c0cf78c46801877368d6ecad2245/src/main/java/org/ohdsi/webapi/audittrail/listeners/AuditTrailFailedLoginListener.java
src/main/java/org/ohdsi/webapi/audittrail/listeners/AuditTrailFailedLoginListener.java
package org.ohdsi.webapi.audittrail.listeners; import com.odysseusinc.logging.event.FailedLoginEvent; import org.ohdsi.webapi.audittrail.AuditTrailService; import org.ohdsi.webapi.audittrail.events.AuditTrailLoginFailedEvent; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.con...
java
Apache-2.0
b22d7bf02d98c0cf78c46801877368d6ecad2245
2026-01-05T02:37:20.475642Z
false
OHDSI/WebAPI
https://github.com/OHDSI/WebAPI/blob/b22d7bf02d98c0cf78c46801877368d6ecad2245/src/main/java/org/ohdsi/webapi/audittrail/listeners/AuditTrailSuccessLoginListener.java
src/main/java/org/ohdsi/webapi/audittrail/listeners/AuditTrailSuccessLoginListener.java
package org.ohdsi.webapi.audittrail.listeners; import com.odysseusinc.logging.event.SuccessLoginEvent; import org.ohdsi.webapi.audittrail.AuditTrailService; import org.ohdsi.webapi.audittrail.events.AuditTrailSessionCreatedEvent; import org.springframework.beans.factory.annotation.Autowired; import org.springframework...
java
Apache-2.0
b22d7bf02d98c0cf78c46801877368d6ecad2245
2026-01-05T02:37:20.475642Z
false
OHDSI/WebAPI
https://github.com/OHDSI/WebAPI/blob/b22d7bf02d98c0cf78c46801877368d6ecad2245/src/main/java/org/ohdsi/webapi/audittrail/listeners/AuditTrailJobListener.java
src/main/java/org/ohdsi/webapi/audittrail/listeners/AuditTrailJobListener.java
package org.ohdsi.webapi.audittrail.listeners; import org.ohdsi.webapi.audittrail.AuditTrailService; import org.springframework.batch.core.BatchStatus; import org.springframework.batch.core.JobExecution; import org.springframework.batch.core.JobExecutionListener; import org.springframework.beans.factory.annotation.Aut...
java
Apache-2.0
b22d7bf02d98c0cf78c46801877368d6ecad2245
2026-01-05T02:37:20.475642Z
false
OHDSI/WebAPI
https://github.com/OHDSI/WebAPI/blob/b22d7bf02d98c0cf78c46801877368d6ecad2245/src/main/java/org/ohdsi/webapi/cohortanalysis/CohortSummary.java
src/main/java/org/ohdsi/webapi/cohortanalysis/CohortSummary.java
package org.ohdsi.webapi.cohortanalysis; import org.ohdsi.webapi.cohortdefinition.dto.CohortDTO; import java.util.List; public class CohortSummary { private CohortDTO cohortDefinition; private String totalPatients; private String meanAge; private String meanObsPeriod; private List<?> genderDistribution...
java
Apache-2.0
b22d7bf02d98c0cf78c46801877368d6ecad2245
2026-01-05T02:37:20.475642Z
false
OHDSI/WebAPI
https://github.com/OHDSI/WebAPI/blob/b22d7bf02d98c0cf78c46801877368d6ecad2245/src/main/java/org/ohdsi/webapi/cohortanalysis/package-info.java
src/main/java/org/ohdsi/webapi/cohortanalysis/package-info.java
/** * Model specific classes used by for running Heracles analyses (cohort analyses) */ package org.ohdsi.webapi.cohortanalysis;
java
Apache-2.0
b22d7bf02d98c0cf78c46801877368d6ecad2245
2026-01-05T02:37:20.475642Z
false
OHDSI/WebAPI
https://github.com/OHDSI/WebAPI/blob/b22d7bf02d98c0cf78c46801877368d6ecad2245/src/main/java/org/ohdsi/webapi/cohortanalysis/CohortAnalysisGenerationInfoPK.java
src/main/java/org/ohdsi/webapi/cohortanalysis/CohortAnalysisGenerationInfoPK.java
// // This file was generated by the Jeddict // package org.ohdsi.webapi.cohortanalysis; import java.io.Serializable; public class CohortAnalysisGenerationInfoPK implements Serializable { private Integer sourceId; private Integer cohortDefinition; public CohortAnalysisGenerationInfoPK(){ } p...
java
Apache-2.0
b22d7bf02d98c0cf78c46801877368d6ecad2245
2026-01-05T02:37:20.475642Z
false
OHDSI/WebAPI
https://github.com/OHDSI/WebAPI/blob/b22d7bf02d98c0cf78c46801877368d6ecad2245/src/main/java/org/ohdsi/webapi/cohortanalysis/CohortAnalysisUtilities.java
src/main/java/org/ohdsi/webapi/cohortanalysis/CohortAnalysisUtilities.java
package org.ohdsi.webapi.cohortanalysis; public class CohortAnalysisUtilities { private String cdmSchema; private String ohdsiSchema; private String sourceName; private String cdmVersion; private String sourceDialect; private String dialect; /** * @return the cdmSchema */ public String getCdmSchema() {...
java
Apache-2.0
b22d7bf02d98c0cf78c46801877368d6ecad2245
2026-01-05T02:37:20.475642Z
false
OHDSI/WebAPI
https://github.com/OHDSI/WebAPI/blob/b22d7bf02d98c0cf78c46801877368d6ecad2245/src/main/java/org/ohdsi/webapi/cohortanalysis/CohortAnalysis.java
src/main/java/org/ohdsi/webapi/cohortanalysis/CohortAnalysis.java
package org.ohdsi.webapi.cohortanalysis; import java.sql.Timestamp; import java.text.SimpleDateFormat; import org.ohdsi.webapi.model.results.Analysis; import com.fasterxml.jackson.annotation.JsonProperty; public class CohortAnalysis extends Analysis { public static final String COHORT_DEFINITION_ID = "COHORT_DEFI...
java
Apache-2.0
b22d7bf02d98c0cf78c46801877368d6ecad2245
2026-01-05T02:37:20.475642Z
false
OHDSI/WebAPI
https://github.com/OHDSI/WebAPI/blob/b22d7bf02d98c0cf78c46801877368d6ecad2245/src/main/java/org/ohdsi/webapi/cohortanalysis/CohortAnalysisTasklet.java
src/main/java/org/ohdsi/webapi/cohortanalysis/CohortAnalysisTasklet.java
package org.ohdsi.webapi.cohortanalysis; import java.util.Calendar; import java.util.Set; import java.util.stream.Collectors; import java.util.stream.Stream; import com.fasterxml.jackson.databind.ObjectMapper; import org.apache.commons.lang3.StringUtils; import static org.ohdsi.webapi.util.SecurityUtils.whitelist; i...
java
Apache-2.0
b22d7bf02d98c0cf78c46801877368d6ecad2245
2026-01-05T02:37:20.475642Z
false
OHDSI/WebAPI
https://github.com/OHDSI/WebAPI/blob/b22d7bf02d98c0cf78c46801877368d6ecad2245/src/main/java/org/ohdsi/webapi/cohortanalysis/HeraclesConfigurationInfo.java
src/main/java/org/ohdsi/webapi/cohortanalysis/HeraclesConfigurationInfo.java
package org.ohdsi.webapi.cohortanalysis; import org.ohdsi.info.ConfigurationInfo; import org.springframework.beans.factory.annotation.Value; import org.springframework.stereotype.Component; @Component public class HeraclesConfigurationInfo extends ConfigurationInfo { private static final String KEY = "heracles";...
java
Apache-2.0
b22d7bf02d98c0cf78c46801877368d6ecad2245
2026-01-05T02:37:20.475642Z
false
OHDSI/WebAPI
https://github.com/OHDSI/WebAPI/blob/b22d7bf02d98c0cf78c46801877368d6ecad2245/src/main/java/org/ohdsi/webapi/cohortanalysis/HeraclesQueryBuilder.java
src/main/java/org/ohdsi/webapi/cohortanalysis/HeraclesQueryBuilder.java
package org.ohdsi.webapi.cohortanalysis; import com.odysseusinc.arachne.commons.types.DBMSType; import org.apache.commons.collections.CollectionUtils; import org.apache.commons.csv.CSVFormat; import org.apache.commons.csv.CSVParser; import org.apache.commons.csv.CSVRecord; import org.apache.commons.lang3.ArrayUtils; i...
java
Apache-2.0
b22d7bf02d98c0cf78c46801877368d6ecad2245
2026-01-05T02:37:20.475642Z
false
OHDSI/WebAPI
https://github.com/OHDSI/WebAPI/blob/b22d7bf02d98c0cf78c46801877368d6ecad2245/src/main/java/org/ohdsi/webapi/cohortanalysis/CohortAnalysisGenerationInfo.java
src/main/java/org/ohdsi/webapi/cohortanalysis/CohortAnalysisGenerationInfo.java
/** * This file was generated by the Jeddict */ package org.ohdsi.webapi.cohortanalysis; import java.util.Date; import java.util.HashSet; import java.util.Set; import javax.persistence.Basic; import javax.persistence.CollectionTable; import javax.persistence.Column; import javax.persistence.ElementCollection; impo...
java
Apache-2.0
b22d7bf02d98c0cf78c46801877368d6ecad2245
2026-01-05T02:37:20.475642Z
false
OHDSI/WebAPI
https://github.com/OHDSI/WebAPI/blob/b22d7bf02d98c0cf78c46801877368d6ecad2245/src/main/java/org/ohdsi/webapi/cohortanalysis/CohortAnalysisTask.java
src/main/java/org/ohdsi/webapi/cohortanalysis/CohortAnalysisTask.java
package org.ohdsi.webapi.cohortanalysis; import com.fasterxml.jackson.databind.ObjectMapper; import org.ohdsi.webapi.cohortresults.PeriodType; import org.ohdsi.webapi.source.Source; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import java.util.List; import static org.ohdsi.webapi.util.SecurityUtils.white...
java
Apache-2.0
b22d7bf02d98c0cf78c46801877368d6ecad2245
2026-01-05T02:37:20.475642Z
false
OHDSI/WebAPI
https://github.com/OHDSI/WebAPI/blob/b22d7bf02d98c0cf78c46801877368d6ecad2245/src/main/java/org/ohdsi/webapi/cohortcharacterization/CreateCohortTableTasklet.java
src/main/java/org/ohdsi/webapi/cohortcharacterization/CreateCohortTableTasklet.java
package org.ohdsi.webapi.cohortcharacterization; import org.ohdsi.circe.helper.ResourceHelper; import org.ohdsi.sql.SqlSplit; import org.ohdsi.sql.SqlTranslate; import org.ohdsi.webapi.source.SourceService; import org.ohdsi.webapi.source.Source; import org.ohdsi.webapi.sqlrender.SourceAwareSqlRender; import org.ohdsi....
java
Apache-2.0
b22d7bf02d98c0cf78c46801877368d6ecad2245
2026-01-05T02:37:20.475642Z
false
OHDSI/WebAPI
https://github.com/OHDSI/WebAPI/blob/b22d7bf02d98c0cf78c46801877368d6ecad2245/src/main/java/org/ohdsi/webapi/cohortcharacterization/DropCohortTableListener.java
src/main/java/org/ohdsi/webapi/cohortcharacterization/DropCohortTableListener.java
package org.ohdsi.webapi.cohortcharacterization; import com.odysseusinc.arachne.commons.types.DBMSType; import java.util.Objects; import org.apache.commons.lang3.StringUtils; import org.ohdsi.circe.helper.ResourceHelper; import org.ohdsi.sql.SqlTranslate; import org.ohdsi.webapi.source.SourceService; import org.ohdsi....
java
Apache-2.0
b22d7bf02d98c0cf78c46801877368d6ecad2245
2026-01-05T02:37:20.475642Z
false
OHDSI/WebAPI
https://github.com/OHDSI/WebAPI/blob/b22d7bf02d98c0cf78c46801877368d6ecad2245/src/main/java/org/ohdsi/webapi/cohortcharacterization/CcServiceImpl.java
src/main/java/org/ohdsi/webapi/cohortcharacterization/CcServiceImpl.java
package org.ohdsi.webapi.cohortcharacterization; import com.cosium.spring.data.jpa.entity.graph.domain.EntityGraph; import com.fasterxml.jackson.core.type.TypeReference; import com.google.common.collect.ImmutableList; import org.apache.commons.io.FileUtils; import org.apache.commons.lang3.StringUtils; import org.ohdsi...
java
Apache-2.0
b22d7bf02d98c0cf78c46801877368d6ecad2245
2026-01-05T02:37:20.475642Z
true
OHDSI/WebAPI
https://github.com/OHDSI/WebAPI/blob/b22d7bf02d98c0cf78c46801877368d6ecad2245/src/main/java/org/ohdsi/webapi/cohortcharacterization/GenerateLocalCohortTasklet.java
src/main/java/org/ohdsi/webapi/cohortcharacterization/GenerateLocalCohortTasklet.java
package org.ohdsi.webapi.cohortcharacterization; import org.ohdsi.webapi.cohortdefinition.CohortDefinition; import org.ohdsi.webapi.cohortdefinition.CohortDefinitionDetails; import org.ohdsi.webapi.cohortdefinition.CohortGenerationRequestBuilder; import org.ohdsi.webapi.cohortdefinition.CohortGenerationUtils; import o...
java
Apache-2.0
b22d7bf02d98c0cf78c46801877368d6ecad2245
2026-01-05T02:37:20.475642Z
false
OHDSI/WebAPI
https://github.com/OHDSI/WebAPI/blob/b22d7bf02d98c0cf78c46801877368d6ecad2245/src/main/java/org/ohdsi/webapi/cohortcharacterization/CcConst.java
src/main/java/org/ohdsi/webapi/cohortcharacterization/CcConst.java
package org.ohdsi.webapi.cohortcharacterization; public interface CcConst { String dateFormat = "yyyy-MM-dd HH:mm:ss"; }
java
Apache-2.0
b22d7bf02d98c0cf78c46801877368d6ecad2245
2026-01-05T02:37:20.475642Z
false
OHDSI/WebAPI
https://github.com/OHDSI/WebAPI/blob/b22d7bf02d98c0cf78c46801877368d6ecad2245/src/main/java/org/ohdsi/webapi/cohortcharacterization/CcImportEvent.java
src/main/java/org/ohdsi/webapi/cohortcharacterization/CcImportEvent.java
package org.ohdsi.webapi.cohortcharacterization; import java.util.List; public class CcImportEvent { // should keep list of ids to prevent error for duplication of permissions private List<Integer> savedAnalysesIds; public CcImportEvent(List<Integer> savedAnalysesIds) { this.savedAnalysesIds = s...
java
Apache-2.0
b22d7bf02d98c0cf78c46801877368d6ecad2245
2026-01-05T02:37:20.475642Z
false
OHDSI/WebAPI
https://github.com/OHDSI/WebAPI/blob/b22d7bf02d98c0cf78c46801877368d6ecad2245/src/main/java/org/ohdsi/webapi/cohortcharacterization/GenerateCohortCharacterizationTasklet.java
src/main/java/org/ohdsi/webapi/cohortcharacterization/GenerateCohortCharacterizationTasklet.java
/* * Copyright 2017 Observational Health Data Sciences and Informatics <OHDSI.org>. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 ...
java
Apache-2.0
b22d7bf02d98c0cf78c46801877368d6ecad2245
2026-01-05T02:37:20.475642Z
false
OHDSI/WebAPI
https://github.com/OHDSI/WebAPI/blob/b22d7bf02d98c0cf78c46801877368d6ecad2245/src/main/java/org/ohdsi/webapi/cohortcharacterization/CcService.java
src/main/java/org/ohdsi/webapi/cohortcharacterization/CcService.java
package org.ohdsi.webapi.cohortcharacterization; import org.ohdsi.analysis.cohortcharacterization.design.CohortCharacterization; import org.ohdsi.webapi.cohortcharacterization.domain.CcGenerationEntity; import org.ohdsi.webapi.cohortcharacterization.domain.CohortCharacterizationEntity; import org.ohdsi.webapi.cohortch...
java
Apache-2.0
b22d7bf02d98c0cf78c46801877368d6ecad2245
2026-01-05T02:37:20.475642Z
false
OHDSI/WebAPI
https://github.com/OHDSI/WebAPI/blob/b22d7bf02d98c0cf78c46801877368d6ecad2245/src/main/java/org/ohdsi/webapi/cohortcharacterization/CcController.java
src/main/java/org/ohdsi/webapi/cohortcharacterization/CcController.java
package org.ohdsi.webapi.cohortcharacterization; import com.odysseusinc.arachne.commons.utils.CommonFilenameUtils; import com.odysseusinc.arachne.commons.utils.ConverterUtils; import com.opencsv.CSVWriter; import com.qmino.miredot.annotations.ReturnType; import org.ohdsi.analysis.Utils; import org.ohdsi.analysis.cohor...
java
Apache-2.0
b22d7bf02d98c0cf78c46801877368d6ecad2245
2026-01-05T02:37:20.475642Z
false
OHDSI/WebAPI
https://github.com/OHDSI/WebAPI/blob/b22d7bf02d98c0cf78c46801877368d6ecad2245/src/main/java/org/ohdsi/webapi/cohortcharacterization/dto/BaseCcDTO.java
src/main/java/org/ohdsi/webapi/cohortcharacterization/dto/BaseCcDTO.java
package org.ohdsi.webapi.cohortcharacterization.dto; import com.fasterxml.jackson.annotation.JsonProperty; import org.ohdsi.analysis.CohortMetadata; import org.ohdsi.circe.cohortdefinition.ConceptSet; import org.ohdsi.webapi.cohortdefinition.CohortMetadataExt; import org.ohdsi.webapi.cohortdefinition.dto.CohortMetadat...
java
Apache-2.0
b22d7bf02d98c0cf78c46801877368d6ecad2245
2026-01-05T02:37:20.475642Z
false
OHDSI/WebAPI
https://github.com/OHDSI/WebAPI/blob/b22d7bf02d98c0cf78c46801877368d6ecad2245/src/main/java/org/ohdsi/webapi/cohortcharacterization/dto/CcVersionFullDTO.java
src/main/java/org/ohdsi/webapi/cohortcharacterization/dto/CcVersionFullDTO.java
package org.ohdsi.webapi.cohortcharacterization.dto; import org.ohdsi.webapi.versioning.dto.VersionFullDTO; public class CcVersionFullDTO extends VersionFullDTO<CohortCharacterizationDTO> { }
java
Apache-2.0
b22d7bf02d98c0cf78c46801877368d6ecad2245
2026-01-05T02:37:20.475642Z
false
OHDSI/WebAPI
https://github.com/OHDSI/WebAPI/blob/b22d7bf02d98c0cf78c46801877368d6ecad2245/src/main/java/org/ohdsi/webapi/cohortcharacterization/dto/CcTemporalAnnualResult.java
src/main/java/org/ohdsi/webapi/cohortcharacterization/dto/CcTemporalAnnualResult.java
package org.ohdsi.webapi.cohortcharacterization.dto; public class CcTemporalAnnualResult extends AbstractTemporalResult{ private Integer year; public Integer getYear() { return year; } public void setYear(Integer year) { this.year = year; } }
java
Apache-2.0
b22d7bf02d98c0cf78c46801877368d6ecad2245
2026-01-05T02:37:20.475642Z
false
OHDSI/WebAPI
https://github.com/OHDSI/WebAPI/blob/b22d7bf02d98c0cf78c46801877368d6ecad2245/src/main/java/org/ohdsi/webapi/cohortcharacterization/dto/ExportExecutionResultRequest.java
src/main/java/org/ohdsi/webapi/cohortcharacterization/dto/ExportExecutionResultRequest.java
package org.ohdsi.webapi.cohortcharacterization.dto; import com.fasterxml.jackson.annotation.JsonProperty; public class ExportExecutionResultRequest extends ExecutionResultRequest{ @JsonProperty("isComparative") private Boolean isComparative; public Boolean isComparative() { return isComparative;...
java
Apache-2.0
b22d7bf02d98c0cf78c46801877368d6ecad2245
2026-01-05T02:37:20.475642Z
false
OHDSI/WebAPI
https://github.com/OHDSI/WebAPI/blob/b22d7bf02d98c0cf78c46801877368d6ecad2245/src/main/java/org/ohdsi/webapi/cohortcharacterization/dto/CcShortDTO.java
src/main/java/org/ohdsi/webapi/cohortcharacterization/dto/CcShortDTO.java
package org.ohdsi.webapi.cohortcharacterization.dto; import org.ohdsi.webapi.service.dto.CommonEntityExtDTO; public class CcShortDTO extends CommonEntityExtDTO { private Long id; private Integer hashCode; private String name; private String description; public Long getId() { return id; ...
java
Apache-2.0
b22d7bf02d98c0cf78c46801877368d6ecad2245
2026-01-05T02:37:20.475642Z
false
OHDSI/WebAPI
https://github.com/OHDSI/WebAPI/blob/b22d7bf02d98c0cf78c46801877368d6ecad2245/src/main/java/org/ohdsi/webapi/cohortcharacterization/dto/GenerationResults.java
src/main/java/org/ohdsi/webapi/cohortcharacterization/dto/GenerationResults.java
package org.ohdsi.webapi.cohortcharacterization.dto; import org.ohdsi.webapi.cohortcharacterization.report.Report; import java.util.List; public class GenerationResults { private List<Report> reports; private Float prevalenceThreshold; private Boolean showEmptyResults; private int count; public ...
java
Apache-2.0
b22d7bf02d98c0cf78c46801877368d6ecad2245
2026-01-05T02:37:20.475642Z
false
OHDSI/WebAPI
https://github.com/OHDSI/WebAPI/blob/b22d7bf02d98c0cf78c46801877368d6ecad2245/src/main/java/org/ohdsi/webapi/cohortcharacterization/dto/UserDTO.java
src/main/java/org/ohdsi/webapi/cohortcharacterization/dto/UserDTO.java
package org.ohdsi.webapi.cohortcharacterization.dto; public class UserDTO { private Long id; private String name; private String login; public String getName() { return name; } public void setName(final String name) { this.name = name; } public String getLogin(...
java
Apache-2.0
b22d7bf02d98c0cf78c46801877368d6ecad2245
2026-01-05T02:37:20.475642Z
false
OHDSI/WebAPI
https://github.com/OHDSI/WebAPI/blob/b22d7bf02d98c0cf78c46801877368d6ecad2245/src/main/java/org/ohdsi/webapi/cohortcharacterization/dto/CcStrataDTO.java
src/main/java/org/ohdsi/webapi/cohortcharacterization/dto/CcStrataDTO.java
package org.ohdsi.webapi.cohortcharacterization.dto; import org.ohdsi.analysis.cohortcharacterization.design.CohortCharacterizationStrata; import org.ohdsi.circe.cohortdefinition.CriteriaGroup; public class CcStrataDTO implements CohortCharacterizationStrata { private Long id; private String name; private Crit...
java
Apache-2.0
b22d7bf02d98c0cf78c46801877368d6ecad2245
2026-01-05T02:37:20.475642Z
false
OHDSI/WebAPI
https://github.com/OHDSI/WebAPI/blob/b22d7bf02d98c0cf78c46801877368d6ecad2245/src/main/java/org/ohdsi/webapi/cohortcharacterization/dto/AbstractTemporalResult.java
src/main/java/org/ohdsi/webapi/cohortcharacterization/dto/AbstractTemporalResult.java
package org.ohdsi.webapi.cohortcharacterization.dto; public abstract class AbstractTemporalResult { protected Integer analysisId; protected String analysisName; protected Long covariateId; protected String covariateName; protected Integer strataId; protected String strataName; protected Int...
java
Apache-2.0
b22d7bf02d98c0cf78c46801877368d6ecad2245
2026-01-05T02:37:20.475642Z
false
OHDSI/WebAPI
https://github.com/OHDSI/WebAPI/blob/b22d7bf02d98c0cf78c46801877368d6ecad2245/src/main/java/org/ohdsi/webapi/cohortcharacterization/dto/CcParameterDTO.java
src/main/java/org/ohdsi/webapi/cohortcharacterization/dto/CcParameterDTO.java
package org.ohdsi.webapi.cohortcharacterization.dto; import org.ohdsi.analysis.cohortcharacterization.design.CohortCharacterizationParam; public class CcParameterDTO implements CohortCharacterizationParam { private Long id; private String name; private String value; public String getName() { ...
java
Apache-2.0
b22d7bf02d98c0cf78c46801877368d6ecad2245
2026-01-05T02:37:20.475642Z
false
OHDSI/WebAPI
https://github.com/OHDSI/WebAPI/blob/b22d7bf02d98c0cf78c46801877368d6ecad2245/src/main/java/org/ohdsi/webapi/cohortcharacterization/dto/CcTemporalResult.java
src/main/java/org/ohdsi/webapi/cohortcharacterization/dto/CcTemporalResult.java
package org.ohdsi.webapi.cohortcharacterization.dto; public class CcTemporalResult extends AbstractTemporalResult { private Integer timeId; private Integer startDay; private Integer endDay; public Integer getTimeId() { return timeId; } public void setTimeId(Integer timeId) { t...
java
Apache-2.0
b22d7bf02d98c0cf78c46801877368d6ecad2245
2026-01-05T02:37:20.475642Z
false
OHDSI/WebAPI
https://github.com/OHDSI/WebAPI/blob/b22d7bf02d98c0cf78c46801877368d6ecad2245/src/main/java/org/ohdsi/webapi/cohortcharacterization/dto/CohortCharacterizationDTO.java
src/main/java/org/ohdsi/webapi/cohortcharacterization/dto/CohortCharacterizationDTO.java
package org.ohdsi.webapi.cohortcharacterization.dto; import org.ohdsi.webapi.cohortdefinition.dto.CohortMetadataImplDTO; import org.ohdsi.webapi.feanalysis.dto.FeAnalysisShortDTO; public class CohortCharacterizationDTO extends BaseCcDTO<CohortMetadataImplDTO, FeAnalysisShortDTO> { }
java
Apache-2.0
b22d7bf02d98c0cf78c46801877368d6ecad2245
2026-01-05T02:37:20.475642Z
false
OHDSI/WebAPI
https://github.com/OHDSI/WebAPI/blob/b22d7bf02d98c0cf78c46801877368d6ecad2245/src/main/java/org/ohdsi/webapi/cohortcharacterization/dto/ExecutionResultRequest.java
src/main/java/org/ohdsi/webapi/cohortcharacterization/dto/ExecutionResultRequest.java
package org.ohdsi.webapi.cohortcharacterization.dto; import com.fasterxml.jackson.annotation.JsonProperty; import org.ohdsi.webapi.Constants; import java.util.Collections; import java.util.List; import java.util.Objects; public class ExecutionResultRequest { @JsonProperty("cohortIds") private List<Integer> ...
java
Apache-2.0
b22d7bf02d98c0cf78c46801877368d6ecad2245
2026-01-05T02:37:20.475642Z
false
OHDSI/WebAPI
https://github.com/OHDSI/WebAPI/blob/b22d7bf02d98c0cf78c46801877368d6ecad2245/src/main/java/org/ohdsi/webapi/cohortcharacterization/dto/CcExportDTO.java
src/main/java/org/ohdsi/webapi/cohortcharacterization/dto/CcExportDTO.java
package org.ohdsi.webapi.cohortcharacterization.dto; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import org.ohdsi.analysis.cohortcharacterization.design.CohortCharacterization; import org.ohdsi.webapi.cohortdefinition.dto.CohortDTO; import org.ohdsi.webapi.feanalysis.dto.FeAnalysisDTO; @JsonIgnorePr...
java
Apache-2.0
b22d7bf02d98c0cf78c46801877368d6ecad2245
2026-01-05T02:37:20.475642Z
false