use of org.wso2.carbon.application.deployer.humantask.HumanTaskAppDeployer in project carbon-business-process by wso2.
the class HumanTaskAppDeployerDSComponent method activate.
protected void activate(ComponentContext ctxt) {
try {
// register humantask deployer as an OSGi Service
HumanTaskAppDeployer humanTaskAppDeployer = new HumanTaskAppDeployer();
appHandlerRegistration = ctxt.getBundleContext().registerService(AppDeploymentHandler.class.getName(), humanTaskAppDeployer, null);
// read required-features.xml
URL reqFeaturesResource = ctxt.getBundleContext().getBundle().getResource(AppDeployerConstants.REQ_FEATURES_XML);
if (reqFeaturesResource != null) {
InputStream xmlStream = reqFeaturesResource.openStream();
requiredFeatures = AppDeployerUtils.readRequiredFeaturs(new StAXOMBuilder(xmlStream).getDocumentElement());
}
} catch (Throwable e) {
log.error("Failed to activate HumanTask Application Deployer", e);
}
}
Aggregations