1 31 32 package org.opencms.importexport; 33 34 import org.opencms.file.CmsObject; 35 import org.opencms.report.I_CmsReport; 36 37 import java.io.File ; 38 import java.util.zip.ZipFile ; 39 40 import org.dom4j.Document; 41 42 55 public interface I_CmsImport { 56 57 70 int getVersion(); 71 72 84 void importResources( 85 CmsObject cms, 86 String importPath, 87 I_CmsReport report, 88 File importResource, 89 ZipFile importZip, 90 Document docXml) throws CmsImportExportException; 91 } | Popular Tags |