blob: 1ed93df1d59d88dd628eb8e86c626dc62aa484f5 [file] [log] [blame]
Sean Condon83fc39f2018-04-19 18:56:13 +01001/*
2 * Copyright 2016-present Open Networking Foundation
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16import { Injectable } from '@angular/core';
17import { FnService } from '../util/fn.service';
18import { LoadingService } from '../layer/loading.service';
19import { LogService } from '../../log.service';
20import { WebSocketService } from '../remote/websocket.service';
21
22/**
23 * ONOS GUI -- Widget -- Chart Service
24 */
25@Injectable()
26export class ChartBuilderService {
27
28 constructor(
29 private fs: FnService,
30 private ls: LoadingService,
31 private log: LogService,
32 private wss: WebSocketService
33 ) {
34 this.log.debug('ChartBuilderService constructed');
35 }
36
37}