tzhao

Results 1 comments of tzhao

@Configuration public class ElideConfig { @Bean public Elide initializeElide(EntityDictionary dictionary, DataStore dataStore, ElideConfigProperties settings) { ElideSettingsBuilder builder = (new ElideSettingsBuilder(dataStore)) .withDefaultMaxPageSize(100) .withDefaultPageSize(100) .withEntityDictionary(dictionary) //.withEpochDates() //.withDefaultSerdes() .withISO8601Dates("MM/dd/yyyy", TimeZone.getTimeZone("UTC")) .withJSONApiLinks(new DefaultJSONApiLinks()); return...