Initial seed code contribution for CDT
[appc/cdt.git] / src / app / vnfs / vnf.routing.ts
1 /*
2 ============LICENSE_START==========================================
3 ===================================================================
4 Copyright (C) 2018 AT&T Intellectual Property. All rights reserved.
5 ===================================================================
6
7 Unless otherwise specified, all software contained herein is licensed
8 under the Apache License, Version 2.0 (the License);
9 you may not use this software except in compliance with the License.
10 You may obtain a copy of the License at
11
12     http://www.apache.org/licenses/LICENSE-2.0
13
14 Unless required by applicable law or agreed to in writing, software
15 distributed under the License is distributed on an "AS IS" BASIS,
16 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17 See the License for the specific language governing permissions and
18 limitations under the License.
19
20 ECOMP is a trademark and service mark of AT&T Intellectual Property.
21 ============LICENSE_END============================================
22 */
23
24 import { GoldenConfigurationHolderComponent, } from './build-artifacts/template-holder/template-holder.component';
25 import { MyvnfsComponent } from './myvnfs/myvnfs.component';
26 import { NgModule } from '@angular/core';
27 import { RouterModule, Routes } from '@angular/router';
28 import { ReferenceDataformComponent } from './build-artifacts/reference-dataform/reference-dataform.component';
29 import { GoldenConfigurationComponent } from './build-artifacts/template-holder/template-configuration/template-configuration.component';
30 import { GoldenConfigurationMappingComponent } from './build-artifacts/template-holder/param-name-value/param-name-value.component';
31 import { ParameterComponent } from './build-artifacts/parameter-definitions/parameter.component';
32 import { ParameterHolderComponent } from './build-artifacts/parameter-holder/parameter-holder.component';
33 import { VnfsComponent } from './vnfs/vnfs.component';
34 import { BuildDesignComponent } from './build-artifacts/build-artifacts.component';
35 import { userloginFormComponent } from './userlogin-form/userlogin-form.component';
36 import { LoginGuardService } from './LoginGuardService/Login-guard-service';
37 import { ReferenceDataHolderComponent } from './build-artifacts/reference-data-holder/reference-data-holder.component';
38
39
40 const routes: Routes = [
41     {
42         path: '',
43         component: VnfsComponent,
44         children: [
45             {
46                 path: '',
47                 component: userloginFormComponent,
48                 canActivate: [LoginGuardService],
49
50             }, {
51                 path: 'list',
52                 component: MyvnfsComponent
53
54             },
55
56             {
57                 path: 'design',
58                 component: BuildDesignComponent,
59                 children: [
60                     {
61                         path: 'references',
62                         component: ReferenceDataHolderComponent,
63                         children: [
64                             {
65                                 path: '',
66                                 component: ReferenceDataformComponent
67                             }
68                         ]
69                     }, {
70                         path: 'templates',
71                         component: GoldenConfigurationHolderComponent,
72                         //   canActivate:[GCAuthGuardService],
73                         children: [
74                             {
75                                 path: 'configureTemplate',
76                                 component: GoldenConfigurationComponent
77                             },
78                             {
79                                 path: 'myTemplates',
80                                 component: GoldenConfigurationMappingComponent
81                             }
82                             , {
83                                 path: '',
84                                 redirectTo: 'myTemplates',
85                                 pathMatch: 'full'
86                             }
87                         ]
88                     }, {
89                         path: 'parameterDefinitions',
90                         component: ParameterHolderComponent,
91                         children: [
92                             {
93                                 path: 'create',
94                                 component: ParameterComponent
95                             },
96                             {
97                                 path: 'update',
98                                 component: ParameterComponent
99                             },
100                             {
101                                 path: 'session',
102                                 component: ParameterComponent
103                             },
104                             {
105                                 path: 'key',
106                                 component: ParameterComponent
107                             },
108                             {
109                                 path: 'clearparams',
110                                 component: ParameterComponent
111                             },
112                             {
113                                 path: '',
114                                 redirectTo: 'create',
115                                 pathMatch: 'full'
116                             }
117
118
119                         ]
120                     },
121                 ]
122             }
123         ]
124     }
125 ];
126
127 @NgModule({
128     imports: [RouterModule.forChild(routes)],
129     exports: [RouterModule]
130 })
131 export class VnfRoutingModule {
132 }