use of gov.ca.cwds.rest.api.domain.cms.SystemCodeCache in project api-core by ca-cwds.
the class LogicalIdValidatorTest method setupClass.
@BeforeClass
public static void setupClass() {
SystemCodeCache systemCodeCache = new TestSystemCodeCache();
validator = Validation.buildDefaultValidatorFactory().getValidator();
}
use of gov.ca.cwds.rest.api.domain.cms.SystemCodeCache in project api-core by ca-cwds.
the class SystemCodeDescriptionValidatorTest method setupClass.
@BeforeClass
public static void setupClass() {
SystemCodeCache systemCodeCache = new TestSystemCodeCache();
// TestSystemCodeCache.init();
validator = Validation.buildDefaultValidatorFactory().getValidator();
}
use of gov.ca.cwds.rest.api.domain.cms.SystemCodeCache in project cals-api by ca-cwds.
the class ServicesModule method provideSystemCodeCache.
@Provides
public SystemCodeCache provideSystemCodeCache(SystemCodeService systemCodeService) {
SystemCodeCache systemCodeCache = (SystemCodeCache) systemCodeService;
systemCodeCache.register();
return systemCodeCache;
}
Aggregations