7.4. ingest-internal-client

7.5. Utilisation

7.5.1. Paramètres

Les paramètres sont les InputStreams du fichier SIP pour le dépôt dans la base VITAM

7.5.2. La factory

Afin de récupérer le client, une factory a été mise en place.

// Récupération du client ingest-internal
IngestInternalClient client = IngestInternalClientFactory.getInstance().getIngestInternalClient();

7.5.2.1. Le Mock

Par défaut, le client est en mode Mock. Il est possible de récupérer directement le mock :

// Changer la configuration du Factory
IngestInternalClientFactory.setConfiguration(IngestInternalClientFactory.IngestInternalClientType.MOCK_CLIENT, null);
// Récupération explicite du client mock
IngestInternalClient client = IngestInternalClientFactory.getInstance().getIngestInternalClient();

7.5.3. Le client

Pour instancier son client en mode Production :

// Ajouter un fichier functional-administration-client.conf dans /vitam/conf
// Récupération explicite du client
IngestInternalClient client = IngestInternalClientFactory.getInstance().getIngestInternalClient();

Le client propose trois méthodes :

Status status();
UploadResponseDTO upload(String archiveMimeType,List<LogbookParameters> logbookParametersList, InputStream inputStream);
// Télécharger un object du serveur sauvegardé de l'operation upload ci-dessus avec son ID et type
Response downloadObjectAsync(String objectId, IngestCollection type)

Cette méthde ( à la version 0.9.0) capable de télécharger un sip compressé en 3 formats (zip, tar, tar.gz)

  • Paramètres :

    • archiveMimeType :: String (mimetype de l’archive ;par exemple application/x-tar)
    • logbookParametersList :: List<LogbookParameters>
    • inputStream : InputStream (stream de sip compressé dont le format doit être zip, tar ou tar.gz)
  • Retourne : ATR en format xml

  • Exceptions :