Additional JUnit tests for Model classes
[aai/babel.git] / src / main / java / org / onap / aai / babel / xml / generator / types / ModelType.java
index 7dd86c6..8215536 100644 (file)
@@ -2,8 +2,8 @@
  * ============LICENSE_START=======================================================
  * org.onap.aai
  * ================================================================================
- * Copyright © 2017-2018 AT&T Intellectual Property. All rights reserved.
- * Copyright © 2017-2018 European Software Marketing Ltd.
+ * Copyright (c) 2017-2019 AT&T Intellectual Property. All rights reserved.
+ * Copyright (c) 2017-2019 European Software Marketing Ltd.
  * ================================================================================
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
  * limitations under the License.
  * ============LICENSE_END=========================================================
  */
+
 package org.onap.aai.babel.xml.generator.types;
 
 public enum ModelType {
-    SERVICE,
-    RESOURCE,
-    WIDGET;
+    SERVICE, // top-level model from the CSAR file
+    RESOURCE, // model type for which we generate XML and which may have children
+    WIDGET; // leaf-level type, pre-defined in A&AI
 }