jur-clerkx / infoarchive-sip-sdk

Software Development Kit (SDK) for OpenText InfoArchive, facilitating the assembly and ingestion of Submission Information Packages (SIPs).

Home Page:http://documentum.opentext.com/infoarchive/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

license mpl2 ff69b4 infoarchive sip sdk infoarchive sip sdk measure?key=com.opentext infoarchive sdk core badge

OpenText InfoArchive SDK

The OpenText InfoArchive SDK is a Java library that makes it quick and easy to create SIPs regardless of what type of data it contains or where that data originates from. A SIP (Submission Information Package) is a package consisting of packaging information, meta-data (structured data in the form of XML) and optionally a collection of unstructured data files.

The IA SDK aims to make the process of creating SIPs simpler by allowing a developer to dynamically assemble both the XML file containing the structured data as well as the entire SIP itself. It’s especially easy to create SIPs from any collection or stream of Plain Old Java Objects regardless of if they represent files, SQL query result sets, emails, tweets, etc.

You can also use the SDK to ingest SIPs into InfoArchive and even to configure InfoArchive. For this functionality you must have access to a running InfoArchive server. The SDK supports version 4.0 of InfoArchive and newer.

Overview

The SDK consists of the following jars:

  • infoarchive-sdk-core is the core of the SDK

  • infoarchive-sdk-stringtemplate contains code for working with the StringTemplate template engine

  • infoarchive-sdk-velocity contains code for working with the Velocity template engine

  • infoarchive-yaml contains code for working with YAML configurations

All jars can be found in the Central Repository. The easiest way to get them is through a dependency management system like Gradle or Maven. For the latest version, see the maven-central button at the top of this page.

Gradle

dependencies {
  compile 'com.opentext.ia:infoarchive-sdk-core:7.4.1'
}

Maven

<dependencies>
  <dependency>
    <groupId>com.opentext.ia</groupId>
    <artifactId>infoarchive-sdk-core</artifactId>
    <version>7.4.1</version>
  </dependency>
</dependencies>

Versioning

The InfoArchive SDK uses semantic versioning, which means that backwards incompatible changes will only occur in major versions. These breaking changes are documented on the wiki.

An overview of changes since version 6.1.0 can be found in the change log.

Usage

For an introduction to the SDK and some lab exercises, see the related lab project. For examples on how to use the SDK, see the sample programs.

About

Software Development Kit (SDK) for OpenText InfoArchive, facilitating the assembly and ingestion of Submission Information Packages (SIPs).

http://documentum.opentext.com/infoarchive/

License:Mozilla Public License 2.0


Languages

Language:Java 99.7%Language:XProc 0.3%