blob: b75ed07ee43d6b99f945cade3f67a1f2c6cb977a [file] [log] [blame]
Sean Condon83fc39f2018-04-19 18:56:13 +01001/*
2 * Copyright 2018-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 */
Sean Condonf4f54a12018-10-10 23:25:46 +010016import { Injectable } from '@angular/core';
17import {
18 LogService,
19} from 'gui2-fw-lib';
Sean Condon83fc39f2018-04-19 18:56:13 +010020
Sean Condon83fc39f2018-04-19 18:56:13 +010021
22/**
Sean Condonf4f54a12018-10-10 23:25:46 +010023 * ONOS GUI -- Topology Service Module.
Sean Condon83fc39f2018-04-19 18:56:13 +010024 */
Sean Condonf4f54a12018-10-10 23:25:46 +010025@Injectable()
26export class TopologyService {
Sean Condon83fc39f2018-04-19 18:56:13 +010027
Sean Condonf4f54a12018-10-10 23:25:46 +010028 constructor(
29 protected log: LogService,
30 ) {
31 this.log.debug('Initialized TopologyService');
32 }
33
34 init() {
35
36
37 }
38
39 destroy() {
40
41
42 }
43}