re base code
[sdc.git] / catalog-ui / src / app / ng2 / pages / composition / panel / panel-tabs / groups / group-tabs.module.ts
1 /*-
2  * ============LICENSE_START=======================================================
3  * SDC
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
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 { HttpModule } from "@angular/http";
22 import { FormsModule } from "@angular/forms";
23 import { BrowserModule } from "@angular/platform-browser";
24 import { UiElementsModule } from 'app/ng2/components/ui/ui-elements.module';
25 import { ExpandCollapseComponent } from 'app/ng2/components/ui/expand-collapse/expand-collapse.component';
26 import { PoliciesService } from "../../../../../services/policies.service";
27 import { GroupInformationTabComponent } from './group-information-tab.component';
28 import { TooltipModule } from './../../../../../components/ui/tooltip/tooltip.module';
29 import { GroupTabsComponent } from "./group-tabs.component";
30 import { SdcUiComponentsModule } from "sdc-ui/lib/angular";
31 import { GroupMembersTabComponent } from './group-members-tab.component';
32 import { TranslateModule } from './../../../../../shared/translator/translate.module';
33 import { GroupPropertiesTabComponent } from "./group-properties-tab.component";
34
35 @NgModule({
36     declarations: [
37         GroupInformationTabComponent,
38         GroupMembersTabComponent,
39         GroupTabsComponent,
40         GroupPropertiesTabComponent
41     ],
42     imports: [
43         BrowserModule,
44         FormsModule,
45         HttpModule,
46         TooltipModule,
47         UiElementsModule,
48         SdcUiComponentsModule,
49         TranslateModule
50     ],
51     entryComponents: [
52         GroupInformationTabComponent,
53         GroupMembersTabComponent,
54         GroupTabsComponent,
55         GroupPropertiesTabComponent,
56         ExpandCollapseComponent
57     ],
58     exports: [
59         TooltipModule,
60         GroupInformationTabComponent,
61         GroupMembersTabComponent,
62         GroupTabsComponent,
63         GroupPropertiesTabComponent
64     ],
65     providers: [
66         PoliciesService
67     ]
68 })
69 export class GroupTabsModule {
70
71 }