DCAE-D be initial commit
[sdc/dcae-d/dt-be-main.git] / dcaedt_validator / checker / src / main / java / org / onap / sdc / dcae / checker / Construct.java
1 package org.onap.sdc.dcae.checker;
2
3 /*
4  * What exactly is allowed to go in here is a subject of meditation :) I would have said 'elements with a type' but
5  * that will no cover Requirement and Workflow, or topology template top elements but won't cover others ..
6  * 
7  * Properties/Attributes/Inputs/Outputs are just Data constructs under a particular name.
8  */
9 public enum Construct {
10     Data,
11                 Requirement,
12     Capability,
13     Relationship,
14     Artifact,
15     Interface,
16     Node,
17                 Group,
18                 Policy,
19                 Workflow
20 }
21
22