4ee34453336a66fb4f3f4a333ba0718be65fb398
[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 ConnectionPoint from './ConnectionPoint'
11
12 export default class ConstituentVnfdConnectionPoint extends ConnectionPoint {
13
14         constructor(model, parent) {
15                 super(model, parent);
16                 this.uid = parent.uid + this.key;
17         }
18
19 }