Updated some CDI annotations.
parent
35a1e712f7
commit
9a6fcf8804
|
|
@ -19,8 +19,10 @@
|
||||||
package org.librecms.assets;
|
package org.librecms.assets;
|
||||||
|
|
||||||
import org.libreccm.imexport.AbstractEntityImExporter;
|
import org.libreccm.imexport.AbstractEntityImExporter;
|
||||||
|
import org.libreccm.imexport.Processes;
|
||||||
import org.librecms.contentsection.Asset;
|
import org.librecms.contentsection.Asset;
|
||||||
import org.librecms.contentsection.AssetRepository;
|
import org.librecms.contentsection.AssetRepository;
|
||||||
|
import org.librecms.contentsection.ItemAttachment;
|
||||||
import org.librecms.contentsection.ItemAttachmentImExporter;
|
import org.librecms.contentsection.ItemAttachmentImExporter;
|
||||||
|
|
||||||
import java.util.Objects;
|
import java.util.Objects;
|
||||||
|
|
@ -44,6 +46,7 @@ public abstract class AbstractAssetImExporter<T extends Asset>
|
||||||
|
|
||||||
@Inject
|
@Inject
|
||||||
@Any
|
@Any
|
||||||
|
@Processes(ItemAttachment.class)
|
||||||
private ItemAttachmentImExporter itemAttachmentImExporter;
|
private ItemAttachmentImExporter itemAttachmentImExporter;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
||||||
|
|
@ -45,6 +45,8 @@ public abstract class AbstractContentItemImExporter<T extends ContentItem>
|
||||||
extends AbstractEntityImExporter<T> {
|
extends AbstractEntityImExporter<T> {
|
||||||
|
|
||||||
@Inject
|
@Inject
|
||||||
|
@Any
|
||||||
|
@Processes(AttachmentList.class)
|
||||||
private AttachmentListImExporter attachmentListImExporter;
|
private AttachmentListImExporter attachmentListImExporter;
|
||||||
|
|
||||||
@Inject
|
@Inject
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue