try {
controllerUrl = controllerFile.toURI().toURL();
} catch (MalformedURLException mue) {
throw new GeneralException(mue.getMessage());
}
ControllerConfig cc = ConfigXMLReader.getControllerConfig(controllerUrl);
for (String requestUri: cc.getRequestMapMap().keySet()) {
try {
this.getControllerRequestArtifactInfo(controllerUrl, requestUri);
} catch (GeneralException e) {
Debug.logWarning(e.getMessage(), module);
}
}
for (String viewUri: cc.getViewMapMap().keySet()) {
try {
this.getControllerViewArtifactInfo(controllerUrl, viewUri);
} catch (GeneralException e) {
Debug.logWarning(e.getMessage(), module);
}