Boilerplate : Punnets in Fast2

blog-image

Since the punnet is the pivot format into Fast2, all documents, folders and metadata can only be manipulated through this object. Here are the basics for an appropriate understanding of the Java API of the punnet object.

For a better understanding of the following, the punnet structure needs to be clearly visualized. If required, go back to the definition of such an object in Fast2.

Creating a punnet

The creation of a punnet is an operation which should only take place in source tasks, as all other tasks only process punnets given to the as input.

To create a punnet:

Punnet myPunnet = getPunnetFactory().createEmptyPunnet();

The punnet ID will be automatically computed by Fast2, following certain models based on the task producing the punnet. This ID can be useful to track the punnet over different tasks, as its value will remain unchanged.

ID

To force the ID of the punnet, a String value can be passed as argument.

myPunnet.setPunnetId(PunnetId.id("myId"));

Retrieving the ID of the punnet just goes as so:

PunnetId punnetId = myPunnet.getPunnetId();

Sending a punnet into the campaign

The source tasks are responsible for not only create the punnet, but also send it in the migration workflow.

Once the punnet is created and its components are correctly formed, the last step of the source will rely on the Consumer input parameter of the main method of the connector :

consumer.push(myPunnet);

Documents

Punnets may or may not embed document(s).

Several-documents cases could be like:

  • the migration strategy is to group in a punnet all documents stored in a given folder
  • the migration strategy is to group in a punnet all documents matching a criterion (depending of the configuration fields of the source)
  • a punnet embed a released version of a document and all its past versions.

Whatever the reason, the documents can be added to the punnet in two ways:

  1. The document was already existing:

    Document myDoc = myPunnet.addDocument(myDocument);
    
  2. The document needs to be created, which can be done on the fly:

    Document myDoc = myPunnet.addDocument(DocumentId.id());
    

All documents can be access via the list of all documents stored in the punnet:

List<Document> myDocuments = myPunnet.getDocuments();

As any Java list, documents can be removed as long as the correct index is provided.

For more information concerning the documents, head out to the dedicated section.

DataSet

The purpose of the punnet dataset is to store metadata not closely related to any folder or document specifically.

This dataset can be access via an usual getter:

DataSet myDataset = myPunnet.getDataSet();

A punnet is built with an empty dataset by default.

For more information concerning the dataset, head out to the dedicated section.

Folders

The punnet folderset can be used for folders-only migration and well as folder-as-a-whole ones, where a punnet will contain a folder reference and all the documents previously filed into this folder.

A folderset can contains one or several folder references, and is access as follows:

FolderSet myFolders = myPunnet.getFolders();

A punnet is built with an empty folderset by default.

For more information concerning the folders, head out to the dedicated section.