Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/okean/alm-rest-api
Browse files Browse the repository at this point in the history
  • Loading branch information
okean committed Jul 1, 2016
2 parents 196049f + 21cd319 commit 9b53a5f
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,33 @@
[![Build Status](https://travis-ci.org/okean/alm-rest-api.svg?branch=master)](https://travis-ci.org/okean/alm-rest-api)
[![Coverage Status](https://coveralls.io/repos/github/okean/alm-rest-api/badge.svg?branch=master)](https://coveralls.io/github/okean/alm-rest-api?branch=master)
[![Gitter](https://badges.gitter.im/okean/alm-rest-api.svg)](https://gitter.im/okean/alm-rest-api?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge)

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.
```java
// Init rest connector instance to authenticate your session
RestConnector.instance().init("localhost", "8181", "b2b", "rx");

Dao.login("admin", "admin");

// Get the test with specified ID
Test test = Dao.readTest("1");

Dao.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](https://github.com/okean/alm-rest-api/blob/master/LICENSE)

0 comments on commit 9b53a5f

Please sign in to comment.