blob: cc03053ba9b13c1235235d5d4fe4ee1083567c99 [file] [log] [blame]
Sean Condonf4f54a12018-10-10 23:25:46 +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 */
16import { NgModule } from '@angular/core';
17import { CommonModule } from '@angular/common';
18import { TopologyRoutingModule } from './topology-routing.module';
19import { TopologyComponent } from './topology/topology.component';
20import { NoDeviceConnectedSvgComponent } from './layer/nodeviceconnectedsvg/nodeviceconnectedsvg.component';
21import { LayoutComponent } from './layer/layout/layout.component';
22import { ZoomLayerSvgComponent } from './layer/zoomlayersvg/zoomlayersvg.component';
23import { InstanceComponent } from './panel/instance/instance.component';
24import { SummaryComponent } from './panel/summary/summary.component';
25import { ToolbarComponent } from './panel/toolbar/toolbar.component';
26import { DetailsComponent } from './panel/details/details.component';
27import { Gui2FwLibModule } from 'gui2-fw-lib';
28import { BackgroundSvgComponent } from './layer/backgroundsvg/backgroundsvg.component';
29import { ForceSvgComponent } from './layer/forcesvg/forcesvg.component';
30import { MapSvgComponent } from './layer/mapsvg/mapsvg.component';
31
32/**
33 * ONOS GUI -- Topology View Module
34 *
35 * Note: This has been updated from onos-gui-1.0.0 where it was called 'topo2'
36 * whereas here it is now called 'topology'. This also merges in the old 'topo'
37 */
38@NgModule({
39 imports: [
40 CommonModule,
41 TopologyRoutingModule,
42 Gui2FwLibModule
43 ],
44 declarations: [
45 TopologyComponent,
46 NoDeviceConnectedSvgComponent,
47 LayoutComponent,
48 ZoomLayerSvgComponent,
49 InstanceComponent,
50 SummaryComponent,
51 ToolbarComponent,
52 DetailsComponent,
53 BackgroundSvgComponent,
54 ForceSvgComponent,
55 MapSvgComponent
56 ]
57})
58export class TopologyModule { }