Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 983 Bytes

README.md

File metadata and controls

32 lines (23 loc) · 983 Bytes

ALM REST API Integration

Build Status Coverage Status

A simple Java API client to connect to HP ALM using REST service.

Features

Create, read, update, and delete entities on the ALM HP platform.

Installing

mvn clean install

Examples

Here is a simple example that login, returns a test entity and logout from ALM server.

Client client = new Client(new Config("alm.properties"));

client.login();

// Get the test set with specified ID
TestSet testSet = client.loadTestSet("1");

client.logout();

REST API Overview

http://alm-help.saas.hpe.com/en/12.20/api_refs/REST_TECH_PREVIEW/ALM_REST_API_TP.html

Licensing

See LICENSE