use of org.qi4j.index.rdf.assembly.RdfMemoryStoreAssembler in project qi4j-sdk by Qi4j.
the class PasswordDomainTest method assemble.
// END SNIPPET: domain
// START SNIPPET: assembly
@Override
public void assemble(ModuleAssembly module) throws AssemblyException {
// END SNIPPET: assembly
new EntityTestAssembler().assemble(module);
new RdfMemoryStoreAssembler().assemble(module);
ModuleAssembly configModule = module;
// START SNIPPET: assembly
new StandaloneShiroAssembler().withConfig(configModule).assemble(module);
new PasswordDomainAssembler().withConfig(configModule).assemble(module);
module.entities(User.class);
module.services(UserFactory.class);
// END SNIPPET: assembly
configModule.forMixin(ShiroIniConfiguration.class).declareDefaults().iniResourcePath().set("classpath:standalone-shiro.ini");
// START SNIPPET: assembly
}
use of org.qi4j.index.rdf.assembly.RdfMemoryStoreAssembler in project qi4j-sdk by Qi4j.
the class EnvisageSample method assemble.
@Override
public void assemble(ModuleAssembly module) throws AssemblyException {
module.entities(CarEntity.class);
module.entities(AnimalEntity.class);
new RdfMemoryStoreAssembler().assemble(module);
new EntityTestAssembler().assemble(module);
}
use of org.qi4j.index.rdf.assembly.RdfMemoryStoreAssembler in project qi4j-sdk by Qi4j.
the class TracingTest method assemble.
public void assemble(ModuleAssembly module) throws AssemblyException {
module.services(SomeService.class).instantiateOnStartup();
module.services(SomeService2.class).instantiateOnStartup();
new TracingAssembler().assemble(module);
new EntityTestAssembler().assemble(module);
new RdfMemoryStoreAssembler().assemble(module);
module.services(UuidIdentityGeneratorService.class);
module.entities(CompositeTraceRecordEntity.class);
module.entities(EntityTraceRecordEntity.class);
module.entities(ServiceTraceRecordEntity.class);
}
use of org.qi4j.index.rdf.assembly.RdfMemoryStoreAssembler in project qi4j-sdk by Qi4j.
the class Qi173IssueTest method assemble.
public void assemble(ModuleAssembly module) throws AssemblyException {
module.entities(CarEntity.class);
new RdfMemoryStoreAssembler().assemble(module);
new EntityTestAssembler().assemble(module);
}
use of org.qi4j.index.rdf.assembly.RdfMemoryStoreAssembler in project qi4j-sdk by Qi4j.
the class PieroTest method assemble.
public void assemble(ModuleAssembly module) throws AssemblyException {
module.entities(CarEntity.class);
new RdfMemoryStoreAssembler().assemble(module);
new EntityTestAssembler().assemble(module);
}
Aggregations