Content fragment import using CSV importer | Community
Skip to main content
October 10, 2018

Content fragment import using CSV importer

  • October 10, 2018
  • 4 replies
  • 4025 views

How we can import the content fragment using CSV importer in 6.3 versions ? Do we need to use content manager API for it ? If yes, then which method we can use for it.

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.

4 replies

smacdonald2008
October 10, 2018

Can you please point to the JavaDocs you are referring to when you say Content Manager API.

Can you please refer to the doc topic you are following to perform this use case.

kautuk_sahni
Community Manager
Community Manager
October 11, 2018

AFAIK, we do not have OOTB for creating CFs from CSVs.

Kautuk Sahni
pjoshiAuthor
October 11, 2018

Hi smacdonald2008,

Thanks for replying. I am referring the below javadocs-

ContentFragmentManager ("The Adobe AEM Quickstart and Web Application.")

and below method for contentFragment

ContentFragment create(Resource parent,

   Resource template,

   String name,

   String title)

  throws ContentFragmentException

I want to migrate content fragments from other framework into AEM using CSV importer.

I am able to successfully import the normal asset with CSV importer using Asset Manager API: com.day.cq.dam.api.AssetManager  and with below method

Asset createAsset(String path,

   InputStream is,

  String mimeType,

  boolean doSave)

In the above method "path" act as a target (absTargetPath of CSV importer) where we to create or upload the asset inside Crx and inputStream act as the source path (relSrcPath of the CSV importer) from where we will upload the asset into AEM.

Same approach I am trying for contentFragment using ContentFragment API, but somehow I am not able achieve it.

Pankaj

smacdonald2008
October 12, 2018

Using this API - you cannot pull in a content fragment from a non AEM system into AEM.