use of com.evolveum.axiom.lang.antlr.AxiomModelStatementSource in project midpoint by Evolveum.
the class MidPointPrismContextFactory method registerAxiomSchemas.
private void registerAxiomSchemas(SchemaRegistryImpl schemaRegistry) {
if (schemaRegistry instanceof AxiomEnabledSchemaRegistry) {
AxiomEnabledSchemaRegistry axiomRegistry = (AxiomEnabledSchemaRegistry) schemaRegistry;
AxiomModelStatementSource commonMetadata;
try {
commonMetadata = AxiomModelStatementSource.fromResource("xml/ns/public/common/common-metadata-3.axiom");
} catch (AxiomSyntaxException | IOException e) {
throw new RuntimeException(e);
}
axiomRegistry.addAxiomSource(commonMetadata);
}
}
Aggregations