Identity management micro service designed for screwdriver
##Authenticate Method for authenticating user
Path: /authenticate
Method: HTTP POST
Content-Type: application/json
Body: {"username":"sampleusername","password":"samplepassword"}
HTTP Status Code: 200
Content-Type: application/json
Response Body: {"token":"<Base64 encoded authentication token>"}
HTTP Status Code: 401
Content-Type: application/json
###Validate Method for validating given authentication token
Path: /validate?token=<Base64 encoded authentication token to be validated>
HTTP Method: GET
HTTP Status Code: 200
Content-Type: application/json
Response Body: {"valid":true}
HTTP Status Code: 401
Content-Type: application/json
Response Body: {"valid":false}