9357463f246bb65d09b02b98d9fedb5d41a660a3
[osm/riftware.git] /
1 /*
2  * STANDARD_RIFT_IO_COPYRIGHT
3  */
4 /**
5  * Created by onvelocity on 11/23/15.
6  */
7
8 'use strict';
9
10 import VnfdConnectionPointRef from './VnfdConnectionPointRef'
11
12 export default class RspConnectionPointRef extends VnfdConnectionPointRef {
13
14         static get type() {
15                 return 'rsp-connection-point-ref';
16         }
17
18         static get className() {
19                 return 'RspConnectionPointRef';
20         }
21
22         constructor(model, parent) {
23                 super(model, parent);
24                 this.type = 'rsp-connection-point-ref';
25                 this.uiState['qualified-type'] = 'nsd.vnffgd.rsp.vnfd-connection-point-ref';
26                 this.className = 'RspConnectionPointRef';
27         }
28
29         remove() {
30                 return this.parent.removeRspConnectionPointRef(this);
31         }
32
33 }