Skip to content

Instantly share code, notes, and snippets.

@EugeneVintsiv
EugeneVintsiv / AggregateExternalDataService.java
Last active August 4, 2020 13:02
Upload Label hierarchy from gcdm
public List<RptLabelHierarchy> getAllLabelHierarchy() {
return gcdmService.allLabelHierarchy();
}
@EugeneVintsiv
EugeneVintsiv / jooq.gradle
Created August 30, 2017 15:26 — forked from schoenobates/jooq.gradle
JOOQ Generator Gradle
import org.jooq.util.jaxb.*
import org.jooq.util.*
ext.db = [
url: 'jdbc:postgresql://host/db',
user: 'user',
password: 'user',
schema: 'schema'
]