for (File file: folder.listFiles()){
if (file.getName().endsWith(".js")){
concordionExtender.withLinkedJavaScript(
basedir+file.getName(),
new Resource(basedir+file.getName()));
continue;
}
if (file.getName().endsWith(".css")){
concordionExtender.withLinkedCSS(basedir+file.getName(),
new Resource(basedir+file.getName()));
continue;
}
concordionExtender.withResource(basedir+file.getName(),
new Resource(basedir+file.getName()));
}
}