blob: 7c0af53917a3c7036ebddcf0747ade26a1e49431 [file]
/*
******************************************************************************
* Copyright © 2018 PTA GmbH.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
*
* http://www.eclipse.org/legal/epl-v10.html
*
******************************************************************************
*/
import { Injectable } from '@angular/core';
import { Observable } from 'rxjs/Observable';
import { BaseHttpService, HttpCallInfo, HttpMethodEn } from './base-http.service';
import { SessionContext } from '../common/session-context';
import { Globals } from '../common/globals';
import { User } from '../model/user';
@Injectable()
export class UserService {
constructor(
private baseHttpService: BaseHttpService,
private sessionContext: SessionContext) { }
public getUsers(): Observable<User[]> {
return this.baseHttpService.callService(
new HttpCallInfo(Globals.AUTH_AND_AUTH_SERVICE_NAME, HttpMethodEn.get, '/users', null), this.sessionContext);
}
}