Merge "ONAP code change for log files consolidation"
[policy/engine.git] / PolicyEngineAPI / src / main / java / org / onap / policy / api / AttributeType.java
index 8cfa512..bb6b08d 100644 (file)
@@ -41,6 +41,10 @@ public enum AttributeType {
         * Indicates Attributes required to create MicroService policy. 
         */
        MICROSERVICE("microService"),
+       /**
+        * Indicates Attributes required to create Optimization policy.
+        */
+       OPTIMIZATION("optimization"),
        /**
         * Indicates Attributes required to create settings for Decision Policy.
         */
@@ -62,6 +66,7 @@ public enum AttributeType {
         * Returns the <code>String</code> format of Type for this <code>AttributeType</code>
         * @return the <code>String</code> of the Type for this <code>AttributeType</code>
         */
+       @Override
        public String toString() {
                return this.name;
        }