public void start(List<Long> bundleIds) throws Exception {
if (bundleIds != null && !bundleIds.isEmpty()) {
for (long bundleId : bundleIds) {
if (webEventHandler.getBundleEvents().containsKey(bundleId)) {
WebEvent webEvent = webEventHandler.getBundleEvents().get(bundleId);
Bundle bundle = webEvent.getBundle();
if (bundle != null) {
// deploy
warManager.start(bundleId, null);
} else {
System.out.println("Bundle ID " + bundleId + " is invalid");