8abe918a9a808e09d693646c2a26087416596b5e
[so.git] /
1 package org.onap.aaiclient.client.graphinventory.entities;
2
3 import org.onap.aaiclient.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 }