10f329e20ec04d0bdbb3fac1fc3e62a3115a78ee
[portal/ric-dashboard.git] / webapp-frontend / src / app / app-routing.module.ts
1 /*-
2  * ========================LICENSE_START=================================
3  * O-RAN-SC
4  * %%
5  * Copyright (C) 2019 AT&T Intellectual Property and Nokia
6  * %%
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ========================LICENSE_END===================================
19  */
20 import { NgModule } from '@angular/core';
21 import { CommonModule } from '@angular/common';
22 import { Routes, RouterModule } from '@angular/router';
23 import { LoginComponent } from './login/login.component';
24 import { CatalogComponent } from './catalog/catalog.component';
25 import { ControlComponent } from './control/control.component';
26 import { RANConnectionComponent } from './ran-connection/ran-connection.component';
27 import { StatsComponent } from './stats/stats.component';
28 import { AdminComponent } from './admin/admin.component';
29 import { AcXappComponent } from './ac-xapp/ac-xapp.component';
30 import { AnrXappComponent } from './anr-xapp/anr-xapp.component';
31
32 const routes: Routes = [
33     {path: '', component: LoginComponent},
34     {path: 'login', component: LoginComponent},
35     {path: 'catalog', component: CatalogComponent},
36     {path: 'control', component: ControlComponent},
37     {path: 'ran-connection', component: RANConnectionComponent},
38     {path: 'stats', component: StatsComponent},
39     {path: 'admin', component: AdminComponent},
40     {path: 'ac', component: AcXappComponent},
41     {path: 'anr', component: AnrXappComponent},
42 ];
43
44 @NgModule({
45   imports: [
46       CommonModule,
47       RouterModule.forRoot(routes)],
48   exports: [
49       RouterModule
50     ],
51     declarations: []
52 })
53 export class AppRoutingModule { }