blob: 93c2911af9150c97e7b50987a576306b3bb042d2 [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 { HttpClient } from '@angular/common/http';
import { Injectable } from '@angular/core';
import { Observable } from 'rxjs/Observable';
import 'rxjs/add/observable/throw';
import 'rxjs/add/operator/catch';
import 'rxjs/add/operator/map';
import { RoleAccess } from '../model/role-access';
import { BaseHttpService, HttpCallInfo, HttpMethodEn } from './base-http.service';
import { Globals } from '../common/globals';
import { SessionContext } from '../common/session-context';
@Injectable()
export class RoleAccessService {
constructor(public http: HttpClient,
private baseHttpService: BaseHttpService,
private sessionContext: SessionContext) {
}
getRoleAccessDefinition(): Observable<RoleAccess> {
return this.baseHttpService.callService(
new HttpCallInfo(Globals.GRID_MEASURES_SERVICE_NAME, HttpMethodEn.get, '/getRoleAccessDefinition', null),
this.sessionContext);
}
}