Package org.apache.karaf.cellar.obr

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


            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

        }

        // 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

Related Classes of org.apache.karaf.cellar.obr.ObrBundleEvent

Copyright © 2018 www.massapicom. 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.