Package com.jalios.jcms.policy
Interface ImportPolicyFilter
-
- All Superinterfaces:
java.lang.Comparable
,PluginComponent
,PolicyFilter
- All Known Implementing Classes:
BasicImportPolicyFilter
public interface ImportPolicyFilter extends PolicyFilter
This interface provides hooks for data export.- Since:
- jcms-5.7.2
- Version:
- $Revision: 20745 $
- Author:
- Olivier Dedieu
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.String
REVISION
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
afterImportData(org.jdom.Document doc, ImportOptions options, ImportStatus status, java.util.Map context)
This methods is called after an import as been performed.boolean
beforeImportData(org.jdom.Document doc, ImportOptions options, ImportStatus status, java.util.Map context)
This method is called before an import.-
Methods inherited from interface com.jalios.jcms.plugin.PluginComponent
init
-
-
-
-
Field Detail
-
REVISION
static final java.lang.String REVISION
- See Also:
- Constant Field Values
-
-
Method Detail
-
beforeImportData
boolean beforeImportData(org.jdom.Document doc, ImportOptions options, ImportStatus status, java.util.Map context)
This method is called before an import. If it returns false, the import is rejected.- Parameters:
doc
- the JDOM Document to importoptions
- the Import optionsstatus
- the Import statuscontext
- the import context- Returns:
- If it returns false, the import is rejected.
- Since:
- jcms-5.7.3
-
afterImportData
void afterImportData(org.jdom.Document doc, ImportOptions options, ImportStatus status, java.util.Map context)
This methods is called after an import as been performed.- Parameters:
doc
- the JDOM Document that has been importedoptions
- the Import optionsstatus
- the Import statuscontext
- the import context- Since:
- jcms-5.7.3
-
-