blob: aa96ab772571c6f7d55fb007edf1ee6f0046aac6 [file] [log] [blame]
/********************************************************************************
* 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 { PageModel } from '@shared/models/page/page.model';
import { Injectable } from '@angular/core';
import { GridFailure } from '@shared/models';
@Injectable()
export class GridFailureService {
static gridAdapter(response: any): Array<GridFailure> {
return response.map(responseItem => new GridFailure(responseItem));
}
static itemAdapter(responseItem: any): GridFailure {
return new GridFailure(responseItem);
}
}