aboutsummaryrefslogtreecommitdiffstats
path: root/common/src/main/java/org/onap/so/client/graphinventory/entities/DSLStartNode.java
blob: fb0772726f8ac39735507d8d999abc8171d0eb61 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package org.onap.so.client.graphinventory.entities;

import org.onap.so.client.graphinventory.GraphInventoryObjectName;

public class DSLStartNode extends DSLNodeBase<DSLStartNode> implements Start {


    public DSLStartNode() {
        super();
    }

    public DSLStartNode(GraphInventoryObjectName name) {
        super(name);
    }

    public DSLStartNode(GraphInventoryObjectName name, DSLNodeKey... key) {
        super(name, key);
    }
}