summaryrefslogtreecommitdiffstats
path: root/components/kpi-computation-ms/src/main/java/org/onap/dcaegen2/kpi/config/Operation.java
diff options
context:
space:
mode:
Diffstat (limited to 'components/kpi-computation-ms/src/main/java/org/onap/dcaegen2/kpi/config/Operation.java')
-rw-r--r--components/kpi-computation-ms/src/main/java/org/onap/dcaegen2/kpi/config/Operation.java5
1 files changed, 3 insertions, 2 deletions
diff --git a/components/kpi-computation-ms/src/main/java/org/onap/dcaegen2/kpi/config/Operation.java b/components/kpi-computation-ms/src/main/java/org/onap/dcaegen2/kpi/config/Operation.java
index 248c3817..82f65ca8 100644
--- a/components/kpi-computation-ms/src/main/java/org/onap/dcaegen2/kpi/config/Operation.java
+++ b/components/kpi-computation-ms/src/main/java/org/onap/dcaegen2/kpi/config/Operation.java
@@ -1,7 +1,7 @@
/*-
* ============LICENSE_START=======================================================
* Copyright (C) 2021 China Mobile.
- * Copyright (C) 2021 Deutsche Telekom AG. All rights reserved.
+ * Copyright (C) 2022 Deutsche Telekom AG. All rights reserved.
* ================================================================================
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -25,7 +25,8 @@ public enum Operation {
SUM("org.onap.dcaegen2.kpi.computation.SumKpiComputation"),
RATIO("org.onap.dcaegen2.kpi.computation.RatioKpiComputation"),
- MEAN("org.onap.dcaegen2.kpi.computation.MEAN");
+ MEAN("org.onap.dcaegen2.kpi.computation.MEAN"),
+ SUMRATIO("org.onap.dcaegen2.kpi.computation.SumRatioKpiComputation");
public final String value;