protected void stopProcessEngine(String processEngineName, DeploymentOperation operationContext) {
final PlatformServiceContainer serviceContainer = operationContext.getServiceContainer();
try {
serviceContainer.stopService(ServiceTypes.PROCESS_ENGINE, processEngineName);
} catch(Exception e) {
LOGGER.log(Level.WARNING, "Could not stop managed process engine: "+e.getMessage(), e);
}