RIFT-14705 - UI Composer: Add IVLD to VNFD is broken
[osm/UI.git] / skyquake / plugins / composer / src / src / libraries / model / descriptors / VirtualDeploymentUnitInternalConnectionPoint.js
1 /*
2 *
3 * Copyright 2016 RIFT.IO Inc
4 *
5 * Licensed under the Apache License, Version 2.0 (the "License");
6 * you may not use this file except in compliance with the License.
7 * You may obtain a copy of the License at
8 *
9 * http://www.apache.org/licenses/LICENSE-2.0
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
16 *
17 */
18
19 'use strict';
20
21 import Position from '../../graph/Position'
22 import InternalConnectionPoint from './InternalConnectionPoint'
23
24
25 /**
26 * A VirtualDeploymentUnitInternalConnectionPoint is always a child of a VDU.
27 * We use it to build internal-connection-point.id-ref instances. So convenience
28 * methods are add to access the fields needed to do that.
29 */
30 export default class VirtualDeploymentUnitInternalConnectionPoint extends InternalConnectionPoint {
31
32 static get type() {
33 return 'internal-connection-point';
34 }
35
36 static get className() {
37 return 'VirtualDeploymentUnitInternalConnectionPoint';
38 }
39
40 static get qualifiedType() {
41 return 'vnfd.vdu.' + VirtualDeploymentUnitInternalConnectionPoint.type;
42 }
43
44 constructor(model, parent) {
45 super(model, parent);
46 this.type = VirtualDeploymentUnitInternalConnectionPoint.type;
47 this.uiState['qualified-type'] = VirtualDeploymentUnitInternalConnectionPoint.qualifiedType;
48 this.className = 'VirtualNetworkFunctionConnectionPoint';
49 }
50
51 remove() {
52 return this.parent.removeInternalConnectionPoint(this);
53 }
54
55 }