summaryrefslogtreecommitdiffstats
path: root/dcaedt_validator/checker/src/main/java/org/onap/sdc/dcae/checker/Construct.java
blob: b05cff9dd815ac9b639e90a447c44caf72e80448 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package org.onap.sdc.dcae.checker;

/*
 * What exactly is allowed to go in here is a subject of meditation :) I would have said 'elements with a type' but
 * that will no cover Requirement and Workflow, or topology template top elements but won't cover others ..
 * 
 * Properties/Attributes/Inputs/Outputs are just Data constructs under a particular name.
 */
public enum Construct {
    Data,
		Requirement,
    Capability,
    Relationship,
    Artifact,
    Interface,
    Node,
		Group,
		Policy,
		Workflow
}