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/exception/UserException.java
src/main/java/org/ohdsi/webapi/exception/UserException.java
package org.ohdsi.webapi.exception; public class UserException extends RuntimeException { public UserException(String message, Throwable cause) { super(message, cause); } public UserException(String message) { super(message); } public UserException(Throwable ex) { super...
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/exception/AtlasException.java
src/main/java/org/ohdsi/webapi/exception/AtlasException.java
package org.ohdsi.webapi.exception; public class AtlasException extends RuntimeException { public AtlasException() { } public AtlasException(String message, Throwable cause) { super(message, cause); } public AtlasException(String message) { super(message); } public AtlasE...
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/exception/BadRequestAtlasException.java
src/main/java/org/ohdsi/webapi/exception/BadRequestAtlasException.java
package org.ohdsi.webapi.exception; // New BadRequest class is used to avoid breaking changes with existing BadRequest class from javax.ws.rs public class BadRequestAtlasException extends AtlasException { public BadRequestAtlasException(String message, Throwable cause) { super(message, cause); } ...
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/source/SourceDetails.java
src/main/java/org/ohdsi/webapi/source/SourceDetails.java
package org.ohdsi.webapi.source; public class SourceDetails extends SourceInfo { private String connectionString; private String username; private String password; private String krbAuthMethod; private String keyfileName; private String krbAdminServer; public SourceDetails(Source 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/source/SourceInfo.java
src/main/java/org/ohdsi/webapi/source/SourceInfo.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/source/SourceService.java
src/main/java/org/ohdsi/webapi/source/SourceService.java
package org.ohdsi.webapi.source; import org.apache.commons.collections4.map.PassiveExpiringMap; import org.jasypt.encryption.pbe.PBEStringEncryptor; import org.jasypt.properties.PropertyValueEncryptionUtils; import org.ohdsi.sql.SqlTranslate; import org.ohdsi.webapi.common.SourceMapKey; import org.ohdsi.webapi.service...
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/source/package-info.java
src/main/java/org/ohdsi/webapi/source/package-info.java
/* * * Copyright 2017 Observational Health Data Sciences and Informatics * 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 r...
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/source/SourceController.java
src/main/java/org/ohdsi/webapi/source/SourceController.java
package org.ohdsi.webapi.source; import com.odysseusinc.arachne.commons.types.DBMSType; import com.odysseusinc.logging.event.AddDataSourceEvent; import com.odysseusinc.logging.event.ChangeDataSourceEvent; import com.odysseusinc.logging.event.DeleteDataSourceEvent; import org.apache.commons.io.IOUtils; import org.apach...
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/source/SourceDaimonRepository.java
src/main/java/org/ohdsi/webapi/source/SourceDaimonRepository.java
package org.ohdsi.webapi.source; import java.util.List; import org.springframework.data.jpa.repository.Query; import org.springframework.data.repository.CrudRepository; import org.springframework.data.repository.query.Param; public interface SourceDaimonRepository extends CrudRepository<SourceDaimon, 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/source/SourceRepository.java
src/main/java/org/ohdsi/webapi/source/SourceRepository.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/source/SourceHelper.java
src/main/java/org/ohdsi/webapi/source/SourceHelper.java
package org.ohdsi.webapi.source; import com.odysseusinc.arachne.commons.types.DBMSType; import com.odysseusinc.arachne.execution_engine_common.util.BigQueryUtils; import com.odysseusinc.logging.event.ChangeDataSourceEvent; import org.apache.commons.io.IOUtils; import org.springframework.context.event.EventListener; 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/source/SourceDaimon.java
src/main/java/org/ohdsi/webapi/source/SourceDaimon.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/source/CheckedEncryptedStringType.java
src/main/java/org/ohdsi/webapi/source/CheckedEncryptedStringType.java
package org.ohdsi.webapi.source; import com.odysseusinc.datasourcemanager.encryption.EncryptorUtils; import java.sql.PreparedStatement; import java.sql.ResultSet; import java.sql.SQLException; import java.sql.Types; import java.util.Objects; import org.hibernate.HibernateException; import org.hibernate.engine.spi.Shar...
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/source/SourceRequest.java
src/main/java/org/ohdsi/webapi/source/SourceRequest.java
package org.ohdsi.webapi.source; import java.util.Collection; import javax.validation.constraints.NotNull; public class SourceRequest { @NotNull private String name; @NotNull private String dialect; @NotNull private String key; @NotNull private String connectionString; private Str...
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/source/Source.java
src/main/java/org/ohdsi/webapi/source/Source.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/i18n/LocaleDTO.java
src/main/java/org/ohdsi/webapi/i18n/LocaleDTO.java
package org.ohdsi.webapi.i18n; import com.fasterxml.jackson.annotation.JsonCreator; import com.fasterxml.jackson.annotation.JsonProperty; public class LocaleDTO { private String code; private String name; @JsonProperty("default") private boolean defaultLocale; @JsonCreator public LocaleDTO(@JsonProperty(...
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/i18n/I18nServiceImpl.java
src/main/java/org/ohdsi/webapi/i18n/I18nServiceImpl.java
package org.ohdsi.webapi.i18n; import com.fasterxml.jackson.databind.JavaType; import com.fasterxml.jackson.databind.JsonNode; import com.fasterxml.jackson.databind.ObjectMapper; import org.ohdsi.circe.helper.ResourceHelper; import org.springframework.context.i18n.LocaleContextHolder; import org.springframework.stereo...
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/i18n/I18nService.java
src/main/java/org/ohdsi/webapi/i18n/I18nService.java
package org.ohdsi.webapi.i18n; import java.util.List; import java.util.Locale; public interface I18nService { List<LocaleDTO> getAvailableLocales(); String translate(String key); String translate(String key, String defaultValue); String getLocaleResource(Locale locale); }
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/i18n/LocaleFilter.java
src/main/java/org/ohdsi/webapi/i18n/LocaleFilter.java
package org.ohdsi.webapi.i18n; import org.apache.commons.lang3.StringUtils; import org.ohdsi.webapi.Constants; import org.springframework.context.i18n.LocaleContextHolder; import javax.ws.rs.container.ContainerRequestContext; import javax.ws.rs.container.ContainerRequestFilter; import javax.ws.rs.ext.Provider; import...
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/i18n/I18nController.java
src/main/java/org/ohdsi/webapi/i18n/I18nController.java
package org.ohdsi.webapi.i18n; import com.google.common.collect.ImmutableList; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Value; import org.springframework.stereotype.Controller; import javax.ws.rs.GET; import javax.ws.rs.Path; import javax.ws.rs...
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/reusable/ReusableController.java
src/main/java/org/ohdsi/webapi/reusable/ReusableController.java
package org.ohdsi.webapi.reusable; import org.ohdsi.webapi.Pagination; import org.ohdsi.webapi.reusable.dto.ReusableDTO; import org.ohdsi.webapi.reusable.dto.ReusableVersionFullDTO; import org.ohdsi.webapi.tag.dto.TagNameListRequestDTO; import org.ohdsi.webapi.versioning.dto.VersionDTO; import org.ohdsi.webapi.version...
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/reusable/ReusableService.java
src/main/java/org/ohdsi/webapi/reusable/ReusableService.java
package org.ohdsi.webapi.reusable; import org.ohdsi.webapi.reusable.domain.Reusable; import org.ohdsi.webapi.reusable.dto.ReusableDTO; import org.ohdsi.webapi.reusable.dto.ReusableVersionFullDTO; import org.ohdsi.webapi.reusable.repository.ReusableRepository; import org.ohdsi.webapi.security.PermissionService; import ...
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/reusable/dto/ReusableDTO.java
src/main/java/org/ohdsi/webapi/reusable/dto/ReusableDTO.java
package org.ohdsi.webapi.reusable.dto; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; import com.fasterxml.jackson.annotation.JsonProperty; import org.ohdsi.webapi.service.dto.CommonEntityExtDTO; import java.util.Objects; @JsonIgnoreProperties(ignor...
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/reusable/dto/ReusableVersionFullDTO.java
src/main/java/org/ohdsi/webapi/reusable/dto/ReusableVersionFullDTO.java
package org.ohdsi.webapi.reusable.dto; import org.ohdsi.webapi.versioning.dto.VersionFullDTO; public class ReusableVersionFullDTO extends VersionFullDTO<ReusableDTO> { }
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/reusable/domain/Reusable.java
src/main/java/org/ohdsi/webapi/reusable/domain/Reusable.java
package org.ohdsi.webapi.reusable.domain; import org.hibernate.annotations.GenericGenerator; import org.hibernate.annotations.Parameter; import org.ohdsi.webapi.model.CommonEntityExt; import org.ohdsi.webapi.tag.domain.Tag; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.Fet...
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/reusable/repository/ReusableRepository.java
src/main/java/org/ohdsi/webapi/reusable/repository/ReusableRepository.java
package org.ohdsi.webapi.reusable.repository; import org.ohdsi.webapi.reusable.domain.Reusable; import org.springframework.data.jpa.repository.JpaRepository; import org.springframework.data.jpa.repository.Query; import org.springframework.data.repository.query.Param; import java.util.List; import java.util.Optional; ...
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/reusable/converter/ReusableVersionToReusableVersionFullDTOConverter.java
src/main/java/org/ohdsi/webapi/reusable/converter/ReusableVersionToReusableVersionFullDTOConverter.java
package org.ohdsi.webapi.reusable.converter; import org.ohdsi.webapi.converter.BaseConversionServiceAwareConverter; import org.ohdsi.webapi.reusable.domain.Reusable; import org.ohdsi.webapi.reusable.dto.ReusableDTO; import org.ohdsi.webapi.reusable.dto.ReusableVersionFullDTO; import org.ohdsi.webapi.reusable.repositor...
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/reusable/converter/ReusableDTOToReusableConverter.java
src/main/java/org/ohdsi/webapi/reusable/converter/ReusableDTOToReusableConverter.java
package org.ohdsi.webapi.reusable.converter; import org.ohdsi.webapi.reusable.domain.Reusable; import org.ohdsi.webapi.reusable.dto.ReusableDTO; import org.ohdsi.webapi.service.converters.BaseCommonDTOExtToEntityExtConverter; import org.springframework.stereotype.Component; @Component public class ReusableDTOToReusab...
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/reusable/converter/ReusableToReusableVersionConverter.java
src/main/java/org/ohdsi/webapi/reusable/converter/ReusableToReusableVersionConverter.java
package org.ohdsi.webapi.reusable.converter; import org.ohdsi.webapi.converter.BaseConversionServiceAwareConverter; import org.ohdsi.webapi.reusable.domain.Reusable; import org.ohdsi.webapi.versioning.domain.ReusableVersion; import org.springframework.stereotype.Component; @Component public class ReusableToReusableVe...
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/reusable/converter/ReusableToReusableDTOConverter.java
src/main/java/org/ohdsi/webapi/reusable/converter/ReusableToReusableDTOConverter.java
package org.ohdsi.webapi.reusable.converter; import org.ohdsi.webapi.reusable.domain.Reusable; import org.ohdsi.webapi.reusable.dto.ReusableDTO; import org.ohdsi.webapi.service.converters.BaseCommonEntityExtToDTOExtConverter; import org.springframework.stereotype.Component; @Component public class ReusableToReusableD...
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/executionengine/controller/ScriptExecutionCallbackController.java
src/main/java/org/ohdsi/webapi/executionengine/controller/ScriptExecutionCallbackController.java
package org.ohdsi.webapi.executionengine.controller; import com.odysseusinc.arachne.execution_engine_common.api.v1.dto.AnalysisExecutionStatusDTO; import com.odysseusinc.arachne.execution_engine_common.api.v1.dto.AnalysisResultDTO; import com.odysseusinc.arachne.execution_engine_common.api.v1.dto.AnalysisResultStatusD...
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/executionengine/controller/ScriptExecutionController.java
src/main/java/org/ohdsi/webapi/executionengine/controller/ScriptExecutionController.java
package org.ohdsi.webapi.executionengine.controller; import org.ohdsi.webapi.executionengine.repository.AnalysisExecutionRepository; import org.ohdsi.webapi.executionengine.service.ExecutionEngineStatus; import org.ohdsi.webapi.executionengine.service.ExecutionEngineStatusService; import org.ohdsi.webapi.executionengi...
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/executionengine/dto/ExecutionRequestDTO.java
src/main/java/org/ohdsi/webapi/executionengine/dto/ExecutionRequestDTO.java
package org.ohdsi.webapi.executionengine.dto; public class ExecutionRequestDTO { public String sourceKey; public String template; public String exposureTable; public String outcomeTable; public Integer cdmVersion; public String workFolder; public Integer cohortId; }
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/executionengine/util/StringGenerationUtil.java
src/main/java/org/ohdsi/webapi/executionengine/util/StringGenerationUtil.java
package org.ohdsi.webapi.executionengine.util; import java.util.UUID; public class StringGenerationUtil { public static String generateFileName(String extension) { return generateRandomString() + "." + extension; } public static String generateRandomString() { return UUID.randomUUID()....
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/executionengine/service/ScriptExecutionService.java
src/main/java/org/ohdsi/webapi/executionengine/service/ScriptExecutionService.java
package org.ohdsi.webapi.executionengine.service; import java.io.File; import java.io.IOException; import java.util.Date; import java.util.List; import org.ohdsi.webapi.executionengine.entity.AnalysisFile; import org.ohdsi.webapi.executionengine.entity.ExecutionEngineAnalysisStatus; import org.ohdsi.webapi.source.Sour...
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/executionengine/service/AnalysisResultFileContentSensitiveInfoServiceImpl.java
src/main/java/org/ohdsi/webapi/executionengine/service/AnalysisResultFileContentSensitiveInfoServiceImpl.java
package org.ohdsi.webapi.executionengine.service; import com.odysseusinc.arachne.execution_engine_common.util.CommonFileUtils; import net.lingala.zip4j.ZipFile; import net.lingala.zip4j.exception.ZipException; import org.apache.commons.collections.map.HashedMap; import org.apache.commons.io.FileUtils; import org.apach...
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/executionengine/service/ExecutionEngineAnalysisStatusInvalidationScheduler.java
src/main/java/org/ohdsi/webapi/executionengine/service/ExecutionEngineAnalysisStatusInvalidationScheduler.java
package org.ohdsi.webapi.executionengine.service; import java.util.Date; import org.apache.commons.lang3.time.DateUtils; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Value; import org.springframework.boot.autoconfigure.condition.ConditionalOnExpres...
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/executionengine/service/AnalysisZipUtils.java
src/main/java/org/ohdsi/webapi/executionengine/service/AnalysisZipUtils.java
package org.ohdsi.webapi.executionengine.service; import static com.google.common.io.Files.createTempDir; import com.odysseusinc.arachne.execution_engine_common.util.CommonFileUtils; import java.io.File; import java.io.IOException; import java.nio.file.Files; import java.nio.file.Path; import java.nio.file.StandardOp...
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/executionengine/service/ExecutionEngineStatusServiceImpl.java
src/main/java/org/ohdsi/webapi/executionengine/service/ExecutionEngineStatusServiceImpl.java
package org.ohdsi.webapi.executionengine.service; import static org.ohdsi.webapi.executionengine.service.ExecutionEngineStatus.OFFLINE; import static org.ohdsi.webapi.executionengine.service.ExecutionEngineStatus.ONLINE; import javax.ws.rs.client.WebTarget; import javax.ws.rs.core.MediaType; import org.ohdsi.webapi.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/executionengine/service/AnalysisZipRepackService.java
src/main/java/org/ohdsi/webapi/executionengine/service/AnalysisZipRepackService.java
package org.ohdsi.webapi.executionengine.service; import static com.google.common.io.Files.createTempDir; import java.io.File; import java.io.IOException; import java.nio.file.Files; import java.nio.file.Path; import java.util.ArrayList; import java.util.Collections; import java.util.List; import java.util.stream.Col...
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/executionengine/service/ScriptExecutionServiceImpl.java
src/main/java/org/ohdsi/webapi/executionengine/service/ScriptExecutionServiceImpl.java
package org.ohdsi.webapi.executionengine.service; import com.odysseusinc.arachne.execution_engine_common.api.v1.dto.AnalysisRequestDTO; import com.odysseusinc.arachne.execution_engine_common.api.v1.dto.AnalysisRequestStatusDTO; import com.odysseusinc.arachne.execution_engine_common.api.v1.dto.DataSourceUnsecuredDTO; 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/executionengine/service/ExecutionEngineStatus.java
src/main/java/org/ohdsi/webapi/executionengine/service/ExecutionEngineStatus.java
package org.ohdsi.webapi.executionengine.service; public enum ExecutionEngineStatus { ONLINE, OFFLINE }
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/executionengine/service/AnalysisResultFileContentSensitiveInfoService.java
src/main/java/org/ohdsi/webapi/executionengine/service/AnalysisResultFileContentSensitiveInfoService.java
package org.ohdsi.webapi.executionengine.service; import org.ohdsi.webapi.common.sensitiveinfo.SensitiveInfoService; import org.ohdsi.webapi.executionengine.entity.AnalysisResultFileContentList; public interface AnalysisResultFileContentSensitiveInfoService extends SensitiveInfoService<AnalysisResultFileContentList> ...
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/executionengine/service/ExecutionEngineStatusService.java
src/main/java/org/ohdsi/webapi/executionengine/service/ExecutionEngineStatusService.java
package org.ohdsi.webapi.executionengine.service; public interface ExecutionEngineStatusService { ExecutionEngineStatus getExecutionEngineStatus(); }
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/executionengine/exception/ScriptCallbackException.java
src/main/java/org/ohdsi/webapi/executionengine/exception/ScriptCallbackException.java
package org.ohdsi.webapi.executionengine.exception; public class ScriptCallbackException extends RuntimeException { public ScriptCallbackException(String message) { super(message); } }
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/executionengine/repository/ExecutionEngineGenerationRepository.java
src/main/java/org/ohdsi/webapi/executionengine/repository/ExecutionEngineGenerationRepository.java
package org.ohdsi.webapi.executionengine.repository; import org.ohdsi.webapi.executionengine.entity.ExecutionEngineGenerationEntity; import org.springframework.data.repository.CrudRepository; import org.springframework.stereotype.Repository; import java.util.Optional; @Repository public interface ExecutionEngineGene...
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/executionengine/repository/AnalysisResultFileContentRepository.java
src/main/java/org/ohdsi/webapi/executionengine/repository/AnalysisResultFileContentRepository.java
package org.ohdsi.webapi.executionengine.repository; import org.ohdsi.webapi.executionengine.entity.AnalysisResultFileContent; import org.springframework.data.jpa.repository.JpaRepository; public interface AnalysisResultFileContentRepository extends JpaRepository<AnalysisResultFileContent, 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/executionengine/repository/AnalysisExecutionRepository.java
src/main/java/org/ohdsi/webapi/executionengine/repository/AnalysisExecutionRepository.java
package org.ohdsi.webapi.executionengine.repository; import java.util.Date; import java.util.List; import org.ohdsi.webapi.executionengine.entity.ExecutionEngineAnalysisStatus; import org.springframework.data.jpa.repository.JpaRepository; import org.springframework.data.jpa.repository.Query; 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/executionengine/repository/OutputFileRepository.java
src/main/java/org/ohdsi/webapi/executionengine/repository/OutputFileRepository.java
package org.ohdsi.webapi.executionengine.repository; import java.util.List; import org.ohdsi.webapi.executionengine.entity.AnalysisResultFile; import org.springframework.data.repository.CrudRepository; import org.springframework.stereotype.Repository; @Repository public interface OutputFileRepository extends ...
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/executionengine/repository/InputFileRepository.java
src/main/java/org/ohdsi/webapi/executionengine/repository/InputFileRepository.java
package org.ohdsi.webapi.executionengine.repository; import org.ohdsi.webapi.executionengine.entity.AnalysisFile; import org.springframework.data.repository.CrudRepository; import org.springframework.stereotype.Repository; @Repository public interface InputFileRepository extends CrudRepository<AnalysisFile, L...
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/executionengine/entity/AnalysisResultFile.java
src/main/java/org/ohdsi/webapi/executionengine/entity/AnalysisResultFile.java
package org.ohdsi.webapi.executionengine.entity; import org.hibernate.annotations.GenericGenerator; import org.hibernate.annotations.Parameter; import javax.persistence.*; @Entity(name = "output_files") public class AnalysisResultFile { @Id @GenericGenerator( name = "analysis_result_file_generator",...
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/executionengine/entity/ExecutionEngineGenerationEntity.java
src/main/java/org/ohdsi/webapi/executionengine/entity/ExecutionEngineGenerationEntity.java
package org.ohdsi.webapi.executionengine.entity; import org.ohdsi.webapi.common.generation.CommonGeneration; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.FetchType; import javax.persistence.Inheritance; import javax.persistence.InheritanceType; import javax.persistence.Jo...
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/executionengine/entity/ExecutionEngineAnalysisStatus.java
src/main/java/org/ohdsi/webapi/executionengine/entity/ExecutionEngineAnalysisStatus.java
package org.ohdsi.webapi.executionengine.entity; import org.hibernate.annotations.GenericGenerator; import org.hibernate.annotations.Parameter; import javax.persistence.*; import java.util.List; @Entity @Table(name = "ee_analysis_status") public class ExecutionEngineAnalysisStatus { public enum Status { ...
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/executionengine/entity/AnalysisResultFileContentList.java
src/main/java/org/ohdsi/webapi/executionengine/entity/AnalysisResultFileContentList.java
package org.ohdsi.webapi.executionengine.entity; import java.util.ArrayList; import java.util.List; public class AnalysisResultFileContentList { private List<AnalysisResultFileContent> files; private boolean hasErrors; public AnalysisResultFileContentList() { this.files = new ArrayList<>(); ...
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/executionengine/entity/AnalysisFile.java
src/main/java/org/ohdsi/webapi/executionengine/entity/AnalysisFile.java
package org.ohdsi.webapi.executionengine.entity; import javax.persistence.Basic; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.FetchType; import javax.persistence.GeneratedValue; import javax.persistence.Id; import javax.persistence.JoinColumn; import javax.persistence.Many...
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/executionengine/entity/AnalysisResultFileContent.java
src/main/java/org/ohdsi/webapi/executionengine/entity/AnalysisResultFileContent.java
package org.ohdsi.webapi.executionengine.entity; import javax.persistence.Basic; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.FetchType; import javax.persistence.Id; import javax.persistence.JoinColumn; import javax.persistence.MapsId; import javax.persistence.OneToOne; @...
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/executionengine/job/RunExecutionEngineTasklet.java
src/main/java/org/ohdsi/webapi/executionengine/job/RunExecutionEngineTasklet.java
package org.ohdsi.webapi.executionengine.job; import org.ohdsi.webapi.Constants; import org.ohdsi.webapi.executionengine.entity.AnalysisFile; import org.ohdsi.webapi.executionengine.service.ScriptExecutionService; import org.ohdsi.webapi.source.Source; import org.springframework.batch.core.StepContribution; import org...
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/executionengine/job/BaseExecutionTasklet.java
src/main/java/org/ohdsi/webapi/executionengine/job/BaseExecutionTasklet.java
package org.ohdsi.webapi.executionengine.job; import org.springframework.batch.core.ExitStatus; import org.springframework.batch.core.StepExecution; import org.springframework.batch.core.StepExecutionListener; import org.springframework.batch.core.step.tasklet.Tasklet; import org.springframework.batch.item.ExecutionCo...
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/executionengine/job/CreateAnalysisTasklet.java
src/main/java/org/ohdsi/webapi/executionengine/job/CreateAnalysisTasklet.java
package org.ohdsi.webapi.executionengine.job; import org.ohdsi.webapi.Constants; import org.ohdsi.webapi.executionengine.entity.ExecutionEngineAnalysisStatus; import org.ohdsi.webapi.executionengine.entity.AnalysisFile; import org.ohdsi.webapi.executionengine.service.ScriptExecutionService; 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/executionengine/job/ExecutionEngineCallbackTasklet.java
src/main/java/org/ohdsi/webapi/executionengine/job/ExecutionEngineCallbackTasklet.java
package org.ohdsi.webapi.executionengine.job; import static org.ohdsi.webapi.executionengine.entity.ExecutionEngineAnalysisStatus.Status.COMPLETED; import static org.ohdsi.webapi.executionengine.entity.ExecutionEngineAnalysisStatus.Status.FAILED; import java.util.Optional; import javax.persistence.EntityManager; 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/plugins/AtlasGisConfig.java
src/main/java/org/ohdsi/webapi/plugins/AtlasGisConfig.java
package org.ohdsi.webapi.plugins; import org.springframework.boot.autoconfigure.condition.ConditionalOnProperty; import org.springframework.context.annotation.ComponentScan; import org.springframework.context.annotation.Configuration; @Configuration @ConditionalOnProperty(value = "atlasgis.enabled", havingValue = "tr...
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/plugins/PluginsConfigurationInfo.java
src/main/java/org/ohdsi/webapi/plugins/PluginsConfigurationInfo.java
package org.ohdsi.webapi.plugins; import org.ohdsi.info.ConfigurationInfo; import org.springframework.beans.factory.annotation.Value; import org.springframework.stereotype.Component; @Component public class PluginsConfigurationInfo extends ConfigurationInfo { private static final String KEY = "plugins"; publ...
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/feasibility/FeasibilityReport.java
src/main/java/org/ohdsi/webapi/feasibility/FeasibilityReport.java
/* * Copyright 2015 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/feasibility/TheraputicAreaDeserializer.java
src/main/java/org/ohdsi/webapi/feasibility/TheraputicAreaDeserializer.java
/* * Copyright 2015 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/feasibility/PerformFeasibilityTasklet.java
src/main/java/org/ohdsi/webapi/feasibility/PerformFeasibilityTasklet.java
/* * Copyright 2015 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/feasibility/StudyGenerationInfoId.java
src/main/java/org/ohdsi/webapi/feasibility/StudyGenerationInfoId.java
/* * Copyright 2015 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/feasibility/StudyGenerationInfo.java
src/main/java/org/ohdsi/webapi/feasibility/StudyGenerationInfo.java
/* * Copyright 2015 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/feasibility/FeasibilityStudyRepository.java
src/main/java/org/ohdsi/webapi/feasibility/FeasibilityStudyRepository.java
/* * Copyright 2015 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/feasibility/InclusionRule.java
src/main/java/org/ohdsi/webapi/feasibility/InclusionRule.java
/* * Copyright 2015 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/feasibility/TheraputicArea.java
src/main/java/org/ohdsi/webapi/feasibility/TheraputicArea.java
/* * Copyright 2015 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/feasibility/PerformFeasibilityTask.java
src/main/java/org/ohdsi/webapi/feasibility/PerformFeasibilityTask.java
/* * Copyright 2015 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/feasibility/FeasibilityStudy.java
src/main/java/org/ohdsi/webapi/feasibility/FeasibilityStudy.java
/* * Copyright 2015 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/feasibility/FeasibilityStudyQueryBuilder.java
src/main/java/org/ohdsi/webapi/feasibility/FeasibilityStudyQueryBuilder.java
/* * Copyright 2015 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/common/SourceMapKey.java
src/main/java/org/ohdsi/webapi/common/SourceMapKey.java
package org.ohdsi.webapi.common; import org.ohdsi.webapi.source.Source; import java.util.function.Function; public final class SourceMapKey<T> { public static SourceMapKey<String> BY_SOURCE_KEY = new SourceMapKey<>(Source::getSourceKey); public static SourceMapKey<Integer> BY_SOURCE_ID = new SourceMapKey<>(Sourc...
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/common/CommonConceptSetEntity.java
src/main/java/org/ohdsi/webapi/common/CommonConceptSetEntity.java
package org.ohdsi.webapi.common; import org.hibernate.annotations.Type; import org.ohdsi.analysis.Utils; import org.ohdsi.circe.cohortdefinition.ConceptSet; import javax.persistence.Column; import javax.persistence.Lob; import javax.persistence.MappedSuperclass; import java.util.List; import java.util.Objects; @Mapp...
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/common/DesignImportService.java
src/main/java/org/ohdsi/webapi/common/DesignImportService.java
package org.ohdsi.webapi.common; import java.util.Arrays; import org.ohdsi.webapi.cohortdefinition.CohortDefinition; import org.ohdsi.webapi.cohortdefinition.CohortDefinitionDetails; import org.ohdsi.webapi.cohortdefinition.CohortDefinitionDetailsRepository; import org.ohdsi.webapi.cohortdefinition.CohortDefinitionRep...
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/common/OptionDTO.java
src/main/java/org/ohdsi/webapi/common/OptionDTO.java
package org.ohdsi.webapi.common; public class OptionDTO { private String id; private String name; public OptionDTO() {} public OptionDTO(String id, String name) { this.id = id; this.name = name; } public String getId() { return id; } public void setId(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/common/generation/AnalysisGenerationBaseInfo.java
src/main/java/org/ohdsi/webapi/common/generation/AnalysisGenerationBaseInfo.java
package org.ohdsi.webapi.common.generation; import org.ohdsi.webapi.shiro.Entities.UserEntity; import javax.persistence.*; @Embeddable @MappedSuperclass public class AnalysisGenerationBaseInfo { @Column(name = "hash_code") protected Integer hashCode; @ManyToOne(fetch = FetchType.LAZY) @JoinColumn(n...
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/common/generation/AnalysisExecutionSupport.java
src/main/java/org/ohdsi/webapi/common/generation/AnalysisExecutionSupport.java
package org.ohdsi.webapi.common.generation; import com.fasterxml.jackson.core.JsonProcessingException; import org.apache.commons.lang3.StringUtils; import org.ohdsi.analysis.Utils; import org.ohdsi.hydra.Hydra; import org.ohdsi.sql.SqlRender; import org.ohdsi.webapi.executionengine.entity.AnalysisFile; import org.ohds...
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/common/generation/CommonGenerationToDtoConverter.java
src/main/java/org/ohdsi/webapi/common/generation/CommonGenerationToDtoConverter.java
package org.ohdsi.webapi.common.generation; import org.springframework.stereotype.Component; @Component public class CommonGenerationToDtoConverter extends BaseCommonGenerationToDtoConverter<CommonGeneration, CommonGenerationDTO> { @Override protected CommonGenerationDTO createResultObject() { return new Com...
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/common/generation/AnalysisGenerationInfo.java
src/main/java/org/ohdsi/webapi/common/generation/AnalysisGenerationInfo.java
package org.ohdsi.webapi.common.generation; import javax.persistence.Column; import javax.persistence.Embeddable; @Embeddable public class AnalysisGenerationInfo extends AnalysisGenerationBaseInfo{ @Column(name = "design") protected String design; public String getDesign() { return design; ...
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/common/generation/AnalysisTasklet.java
src/main/java/org/ohdsi/webapi/common/generation/AnalysisTasklet.java
package org.ohdsi.webapi.common.generation; import org.ohdsi.webapi.cohortcharacterization.repository.AnalysisGenerationInfoEntityRepository; import org.ohdsi.webapi.exception.AtlasException; import org.ohdsi.webapi.shiro.Entities.UserEntity; import org.ohdsi.webapi.util.CancelableJdbcTemplate; 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/common/generation/ExecutionEngineGenerationEntityToDtoConverter.java
src/main/java/org/ohdsi/webapi/common/generation/ExecutionEngineGenerationEntityToDtoConverter.java
package org.ohdsi.webapi.common.generation; import static java.util.Objects.isNull; import static java.util.Objects.nonNull; import org.ohdsi.webapi.executionengine.entity.ExecutionEngineGenerationEntity; import java.util.Objects; public class ExecutionEngineGenerationEntityToDtoConverter<T extends ExecutionEngineG...
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/common/generation/BaseCommonGenerationToDtoConverter.java
src/main/java/org/ohdsi/webapi/common/generation/BaseCommonGenerationToDtoConverter.java
package org.ohdsi.webapi.common.generation; import org.ohdsi.webapi.converter.BaseConversionServiceAwareConverter; public abstract class BaseCommonGenerationToDtoConverter<E extends CommonGeneration, D extends CommonGenerationDTO> extends BaseConversionServiceAwareConverter<E, D> { @Override public D convert(fin...
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/common/generation/StoppableTransactionalTasklet.java
src/main/java/org/ohdsi/webapi/common/generation/StoppableTransactionalTasklet.java
package org.ohdsi.webapi.common.generation; import org.ohdsi.webapi.Constants; import org.slf4j.Logger; import org.springframework.batch.core.ExitStatus; import org.springframework.batch.core.StepContribution; import org.springframework.batch.core.scope.context.ChunkContext; import org.springframework.batch.core.step....
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/common/generation/CancelJobListener.java
src/main/java/org/ohdsi/webapi/common/generation/CancelJobListener.java
package org.ohdsi.webapi.common.generation; import org.ohdsi.webapi.Constants; import org.springframework.batch.core.ExitStatus; import org.springframework.batch.core.JobExecution; import org.springframework.batch.core.listener.JobExecutionListenerSupport; import java.util.Objects; public class CancelJobListener 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/common/generation/CommonGeneration.java
src/main/java/org/ohdsi/webapi/common/generation/CommonGeneration.java
package org.ohdsi.webapi.common.generation; import org.ohdsi.webapi.shiro.Entities.UserEntity; import org.ohdsi.webapi.source.Source; import javax.persistence.Column; import javax.persistence.Embedded; import javax.persistence.FetchType; import javax.persistence.Id; import javax.persistence.JoinColumn; 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/common/generation/ExecutionBasedGenerationDTO.java
src/main/java/org/ohdsi/webapi/common/generation/ExecutionBasedGenerationDTO.java
package org.ohdsi.webapi.common.generation; public class ExecutionBasedGenerationDTO extends CommonGenerationDTO { private int numResultFiles; public int getNumResultFiles() { return numResultFiles; } public void setNumResultFiles(int numResultFiles) { this.numResultFiles = numResultFiles; } }
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/common/generation/TransactionalTasklet.java
src/main/java/org/ohdsi/webapi/common/generation/TransactionalTasklet.java
package org.ohdsi.webapi.common.generation; import org.ohdsi.webapi.Constants; import org.ohdsi.webapi.exception.AtlasException; import org.slf4j.Logger; import org.springframework.batch.core.ExitStatus; import org.springframework.batch.core.StepContribution; import org.springframework.batch.core.scope.context.ChunkCo...
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/common/generation/CancelableTasklet.java
src/main/java/org/ohdsi/webapi/common/generation/CancelableTasklet.java
package org.ohdsi.webapi.common.generation; import org.ohdsi.webapi.util.CancelableJdbcTemplate; import org.ohdsi.webapi.util.StatementCancel; import org.slf4j.Logger; import org.springframework.batch.core.scope.context.ChunkContext; import org.springframework.batch.core.step.tasklet.StoppableTasklet; import org.sprin...
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/common/generation/GenerationUtils.java
src/main/java/org/ohdsi/webapi/common/generation/GenerationUtils.java
package org.ohdsi.webapi.common.generation; import org.ohdsi.webapi.Constants; import org.ohdsi.webapi.cohortcharacterization.CreateCohortTableTasklet; import org.ohdsi.webapi.cohortcharacterization.DropCohortTableListener; import org.ohdsi.webapi.cohortcharacterization.GenerateLocalCohortTasklet; import org.ohdsi.web...
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/common/generation/GenerateSqlResult.java
src/main/java/org/ohdsi/webapi/common/generation/GenerateSqlResult.java
package org.ohdsi.webapi.common.generation; import com.fasterxml.jackson.annotation.JsonProperty; public class GenerateSqlResult { @JsonProperty("templateSql") public String templateSql; }
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/common/generation/CommonGenerationDTO.java
src/main/java/org/ohdsi/webapi/common/generation/CommonGenerationDTO.java
package org.ohdsi.webapi.common.generation; import java.util.Date; public class CommonGenerationDTO { private Long id; private String status; private String sourceKey; private Integer hashCode; private Date startTime; private Date endTime; private String exitMessage; public Long getId...
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/common/generation/AutoremoveJobListener.java
src/main/java/org/ohdsi/webapi/common/generation/AutoremoveJobListener.java
package org.ohdsi.webapi.common.generation; import org.ohdsi.webapi.service.JobService; import org.springframework.batch.core.JobExecution; import org.springframework.batch.core.listener.JobExecutionListenerSupport; public class AutoremoveJobListener extends JobExecutionListenerSupport { private final JobService j...
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/common/generation/AnalysisGenerationInfoEntity.java
src/main/java/org/ohdsi/webapi/common/generation/AnalysisGenerationInfoEntity.java
package org.ohdsi.webapi.common.generation; import org.ohdsi.webapi.shiro.Entities.UserEntity; import javax.persistence.Column; import javax.persistence.Embedded; import javax.persistence.Entity; import javax.persistence.Id; import javax.persistence.Table; @Entity @Table(name = "analysis_generation_info") public cla...
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/common/analyses/CommonAnalysisDTO.java
src/main/java/org/ohdsi/webapi/common/analyses/CommonAnalysisDTO.java
package org.ohdsi.webapi.common.analyses; import org.ohdsi.webapi.service.dto.CommonEntityDTO; import org.ohdsi.webapi.user.dto.UserDTO; import java.util.Date; public class CommonAnalysisDTO extends CommonEntityDTO{ private Integer id; private String name; private String description; public 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/common/orm/EnumListType.java
src/main/java/org/ohdsi/webapi/common/orm/EnumListType.java
package org.ohdsi.webapi.common.orm; import org.hibernate.type.AbstractSingleColumnStandardBasicType; import org.hibernate.type.descriptor.java.JavaTypeDescriptor; import org.hibernate.type.descriptor.sql.SqlTypeDescriptor; import org.hibernate.type.descriptor.sql.VarcharTypeDescriptor; import org.hibernate.usertype.D...
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/common/orm/EnumListTypeDescriptor.java
src/main/java/org/ohdsi/webapi/common/orm/EnumListTypeDescriptor.java
package org.ohdsi.webapi.common.orm; import org.apache.commons.lang3.StringUtils; import org.hibernate.type.descriptor.WrapperOptions; import org.hibernate.type.descriptor.java.AbstractTypeDescriptor; import java.util.*; import java.util.stream.Collectors; public class EnumListTypeDescriptor extends AbstractTypeDesc...
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/common/sensitiveinfo/AbstractSensitiveInfoService.java
src/main/java/org/ohdsi/webapi/common/sensitiveinfo/AbstractSensitiveInfoService.java
package org.ohdsi.webapi.common.sensitiveinfo; import org.apache.commons.csv.CSVFormat; import org.apache.commons.csv.CSVParser; import org.apache.commons.csv.CSVRecord; import org.ohdsi.circe.helper.ResourceHelper; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.beans.factory.BeanI...
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/common/sensitiveinfo/VariablesResolver.java
src/main/java/org/ohdsi/webapi/common/sensitiveinfo/VariablesResolver.java
package org.ohdsi.webapi.common.sensitiveinfo; import java.util.Map; @FunctionalInterface public interface VariablesResolver<T> { Map<String, Object> resolveVariables(T data); }
java
Apache-2.0
b22d7bf02d98c0cf78c46801877368d6ecad2245
2026-01-05T02:37:20.475642Z
false