Corrected ImExporter dependencies
parent
681a28958a
commit
2c317630f1
|
|
@ -19,13 +19,13 @@
|
||||||
package org.librecms.contentsection;
|
package org.librecms.contentsection;
|
||||||
|
|
||||||
import org.libreccm.categorization.Category;
|
import org.libreccm.categorization.Category;
|
||||||
import org.libreccm.core.Resource;
|
|
||||||
import org.libreccm.core.ResourceType;
|
import org.libreccm.core.ResourceType;
|
||||||
import org.libreccm.imexport.AbstractEntityImExporter;
|
import org.libreccm.imexport.AbstractEntityImExporter;
|
||||||
import org.libreccm.imexport.Exportable;
|
import org.libreccm.imexport.Exportable;
|
||||||
import org.libreccm.imexport.Processes;
|
import org.libreccm.imexport.Processes;
|
||||||
|
import org.libreccm.workflow.Workflow;
|
||||||
|
import org.librecms.lifecycle.LifecycleDefinition;
|
||||||
|
|
||||||
import java.util.Collections;
|
|
||||||
import java.util.Objects;
|
import java.util.Objects;
|
||||||
import java.util.Set;
|
import java.util.Set;
|
||||||
|
|
||||||
|
|
@ -54,7 +54,9 @@ public class ContentSectionImExporter
|
||||||
protected Set<Class<? extends Exportable>> getRequiredEntities() {
|
protected Set<Class<? extends Exportable>> getRequiredEntities() {
|
||||||
return Set.of(
|
return Set.of(
|
||||||
Category.class,
|
Category.class,
|
||||||
ResourceType.class
|
ResourceType.class,
|
||||||
|
LifecycleDefinition.class,
|
||||||
|
Workflow.class
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue