| /******************************************************************************** |
| * Copyright (c) 2020 Contributors to the Eclipse Foundation |
| * |
| * See the NOTICE file(s) distributed with this work for additional |
| * information regarding copyright ownership. |
| * |
| * This program and the accompanying materials are made available under the |
| * terms of the Eclipse Public License v. 2.0 which is available at |
| * http://www.eclipse.org/legal/epl-2.0. |
| * |
| * SPDX-License-Identifier: EPL-2.0 |
| ********************************************************************************/ |
| import { Action } from '@ngrx/store'; |
| import { Injectable } from '@angular/core'; |
| import { HttpService, Query, GET, Path, Adapter, PUT, Body, DefaultHeaders } from '@app/shared/async-services/http'; |
| import { Observable } from 'rxjs'; |
| import { GridFailureService } from '@pages/grid-failure/grid-failure.service'; |
| import { GridFailure } from '@shared/models'; |
| |
| @Injectable() |
| @DefaultHeaders({ |
| Accept: 'application/json', |
| 'Content-Type': 'application/json', |
| }) |
| export class GridFailureApiClient extends HttpService { |
| @GET('/grid-failure-informations') |
| @Adapter(GridFailureService.gridAdapter) |
| public getAddressTypes(): Observable<GridFailure[]> { |
| return null; |
| } |
| } |