//BUNDLERS
List<Class<IBundler>> bundlers = new ArrayList<Class<IBundler>>();
List<IBundler> confBundlers = new ArrayList<IBundler>();
Publisher publisher = new PushPublisher();
publisher.init( pconf );
//Add the bundles for this publisher
for ( Class clazz : publisher.getBundlers() ) {
if ( !bundlers.contains( clazz ) ) {
bundlers.add( clazz );
}
}