blob: 5eaa38f5bdc3a6c2ce78429a21dd2af7ebe0730b [file] [log] [blame]
Sean Condon83fc39f2018-04-19 18:56:13 +01001/*
2 * Copyright 2015-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 { Component, OnInit } from '@angular/core';
17import { DialogService } from '../../fw/layer/dialog.service';
18import { FnService } from '../../fw/util/fn.service';
19import { IconService } from '../../fw/svg/icon.service';
20import { KeyService } from '../../fw/util/key.service';
21import { LionService } from '../../fw/util/lion.service';
22import { LogService } from '../../log.service';
23import { PanelService } from '../../fw/layer/panel.service';
24import { TableBuilderService } from '../../fw/widget/tablebuilder.service';
25import { UrlFnService } from '../../fw/remote/urlfn.service';
26import { WebSocketService } from '../../fw/remote/websocket.service';
27
28/**
29 * ONOS GUI -- Apps View Component
30 */
31@Component({
32 selector: 'onos-apps',
33 templateUrl: './apps.component.html',
34 styleUrls: ['./apps.component.css']
35})
36export class AppsComponent implements OnInit {
37
38 constructor(
39 private fs: FnService,
40 private ds: DialogService,
41 private is: IconService,
42 private ks: KeyService,
43 private ls: LionService,
44 private log: LogService,
45 private ps: PanelService,
46 private tbs: TableBuilderService,
47 private ufs: UrlFnService,
48 private wss: WebSocketService,
49 private window: Window
50 ) {
51 this.log.debug('AppsComponent constructed');
52 }
53
54 ngOnInit() {
55 this.log.debug('AppsComponent initialized');
56 }
57
58}