Examples of ObrBundleEvent


Examples of org.apache.karaf.cellar.obr.ObrBundleEvent

        Group group = groupManager.findGroupByName(groupName);
        // create an event and produce it
        EventProducer producer = eventTransportFactory.getEventProducer(groupName, true);
        int type = 0;
        if (start) type = Constants.BUNDLE_START_EVENT_TYPE;
        ObrBundleEvent event = new ObrBundleEvent(bundleId, type);
        event.setForce(true);
        event.setSourceGroup(group);
        producer.produce(event);
        return null;
    }
View Full Code Here

Examples of org.apache.karaf.cellar.obr.ObrBundleEvent

            throw new IllegalArgumentException("OBR bundle " + bundleId + " is blocked outbound");
        }

        // create an event and produce it
        int type = 0;
        ObrBundleEvent event = new ObrBundleEvent(bundleId, type);
        event.setForce(true);
        event.setSourceGroup(group);
        eventProducer.produce(event);
    }
View Full Code Here

Examples of org.apache.karaf.cellar.obr.ObrBundleEvent

        }

        // create an event and produce it
        int type = 0;
        if (start) type = Constants.BUNDLE_START_EVENT_TYPE;
        ObrBundleEvent event = new ObrBundleEvent(bundleId, type);
        event.setForce(true);
        event.setSourceGroup(group);
        eventProducer.produce(event);

        return null;
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.