CSIT Fix for SDC-2585
[sdc.git] / catalog-ui / src / app / ng2 / pages / service-path-creator / link-row / link.model.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 'use strict';
21 import {ForwardingPathLink} from "app/models/forwarding-path-link";
22
23 export class Link extends ForwardingPathLink {
24     public canEdit:boolean = false;
25     public canRemove:boolean = false;
26     public isFirst:boolean = false;
27
28     constructor(link: ForwardingPathLink, canEdit: boolean, canRemove: boolean, isFirst: boolean) {
29         super(link.fromNode,link.fromCP, link.toNode, link.toCP, link.fromCPOriginId, link.toCPOriginId);
30         this.canEdit = canEdit;
31         this.canRemove = canRemove;
32         this.isFirst = isFirst;
33     }
34 }
35
36