167168169170171172173174175176177
* in case of IO errors. */ boolean verify() throws ServiceLocationException { for (Iterator urlIter = urlList.iterator(); urlIter.hasNext();) { ServiceURL url = (ServiceURL) urlIter.next(); if (!url.verify()) { return false; } } return true; }