fb0772726f8ac39735507d8d999abc8171d0eb61
[so.git] /
1 package org.onap.so.client.graphinventory.entities;
2
3 import org.onap.so.client.graphinventory.GraphInventoryObjectName;
4
5 public class DSLStartNode extends DSLNodeBase<DSLStartNode> implements Start {
6
7
8     public DSLStartNode() {
9         super();
10     }
11
12     public DSLStartNode(GraphInventoryObjectName name) {
13         super(name);
14     }
15
16     public DSLStartNode(GraphInventoryObjectName name, DSLNodeKey... key) {
17         super(name, key);
18     }
19 }