for (String childBootstrapURL : bootstrapURLs)
{
// Check if child bootstrap URL is valid
if (childBootstrapURL.startsWith(SLASH))
{
throw new InvalidBootstrapURLException("Invlaid bootstrap URL: " + childBootstrapURL
+ ". Bootstrap URLs can not start with a '" + SLASH + "'");
}
final URL suburl = new URL(bootstrapUrl, childBootstrapURL);
log.debug("Deploying bootstrap xml: " + suburl);
kernelDeployer.deploy(suburl);