private String findPageByID()

in src/main/java/org/apache/cxf/cwiki/ConfluenceCleanupWriter.java [106:120]


    private String findPageByID(String id) throws Exception {
        String location = findPageByID(exporter, id);        
        if (location == null) {
            for (SiteExporter siteExporter : SiteExporter.siteExporters) {
                if (exporter == siteExporter) {
                    continue;
                }
                location = findPageByID(siteExporter, id);
                if (location != null) {
                    break;
                }
            }
        }
        return location;
    }