use of com.evolveum.midpoint.prism.PrismContextImpl in project midpoint by Evolveum.
the class MidPointPrismContextFactory method createEmptyPrismContext.
public PrismContext createEmptyPrismContext() throws SchemaException, FileNotFoundException {
SchemaRegistryImpl schemaRegistry = createSchemaRegistry();
PrismContextImpl context = PrismContextImpl.createEmptyContext(schemaRegistry);
context.setDefinitionFactory(createDefinitionFactory());
context.setDefaultRelation(SchemaConstants.ORG_DEFAULT);
return context;
}
use of com.evolveum.midpoint.prism.PrismContextImpl in project midpoint by Evolveum.
the class SchemaDocMojo method createInitializedPrismContext.
private PrismContext createInitializedPrismContext() throws MojoFailureException {
try {
SchemaRegistryImpl schemaRegistry = createSchemaRegistry();
for (File schemaFile : schemaFiles) {
getLog().info("SchemaDoc: registering schema file: " + schemaFile);
if (!schemaFile.exists()) {
throw new MojoFailureException("Schema file " + schemaFile + " does not exist");
}
schemaRegistry.registerPrismSchemaFile(schemaFile);
}
if (catalogFiles != null && catalogFiles.length > 0) {
for (File catalogFile : catalogFiles) {
getLog().info("SchemaDoc: using catalog file: " + catalogFile);
if (!catalogFile.exists()) {
throw new IOException("Catalog file '" + catalogFile + "' does not exist.");
}
}
schemaRegistry.setCatalogFiles(catalogFiles);
}
PrismContextImpl context = PrismContextImpl.create(schemaRegistry);
context.setDefinitionFactory(new SchemaDefinitionFactory());
context.initialize();
return context;
} catch (SchemaException e) {
handleFailure(e);
// never reached
return null;
} catch (FileNotFoundException e) {
handleFailure(e);
// never reached
return null;
} catch (SAXException e) {
handleFailure(e);
// never reached
return null;
} catch (IOException e) {
handleFailure(e);
// never reached
return null;
}
}
use of com.evolveum.midpoint.prism.PrismContextImpl in project midpoint by Evolveum.
the class MidPointPrismContextFactory method createPrismContext.
@Override
public PrismContext createPrismContext() throws SchemaException, FileNotFoundException {
SchemaRegistryImpl schemaRegistry = createSchemaRegistry();
PrismContextImpl context = PrismContextImpl.create(schemaRegistry);
context.setDefinitionFactory(createDefinitionFactory());
context.setDefaultRelation(SchemaConstants.ORG_DEFAULT);
if (InternalsConfig.isPrismMonitoring()) {
context.setMonitor(new InternalMonitor());
}
return context;
}
Aggregations