Skip to content

krishtoautomate/ALM-RestAPI

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

30 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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.50/api_refs/REST_TECH_PREVIEW/ALM_REST_API_TP.html

Licensing

See LICENSE

Releases

No releases published

Packages

No packages published

Languages