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