New Optimization Policy
[policy/engine.git] / PolicyEngineAPI / src / main / java / org / onap / policy / api / PolicyConfigType.java
index 59fd427..21861da 100644 (file)
@@ -58,8 +58,12 @@ public enum PolicyConfigType{
         */
        MicroService("MS"),
        /**
-        * Indicates Custom Extended Policy type
+        * Indicates OOF Optimization Policy
         */
+       Optimization("Optimization"),
+       /**
+        * Indicates Custom Extended Policy type. 
+        */     
        Extended("EXTENDED")
        ;
        
@@ -73,6 +77,7 @@ public enum PolicyConfigType{
         * Returns the <code>String</code> format of Type for this <code>PolicyClass</code>
         * @return the <code>String</code> of the Type for this <code>PolicyClass</code>
         */
+       @Override
        public String toString() {
                return name;
        }