aboutsummaryrefslogtreecommitdiffstats
path: root/openecomp-be/lib/openecomp-sdc-enrichment-lib/openecomp-sdc-enrichment-api/src/main/java/org/openecomp/core/enrichment/types/ComponentMonitoringUploadInfo.java
diff options
context:
space:
mode:
Diffstat (limited to 'openecomp-be/lib/openecomp-sdc-enrichment-lib/openecomp-sdc-enrichment-api/src/main/java/org/openecomp/core/enrichment/types/ComponentMonitoringUploadInfo.java')
-rw-r--r--openecomp-be/lib/openecomp-sdc-enrichment-lib/openecomp-sdc-enrichment-api/src/main/java/org/openecomp/core/enrichment/types/ComponentMonitoringUploadInfo.java39
1 files changed, 19 insertions, 20 deletions
diff --git a/openecomp-be/lib/openecomp-sdc-enrichment-lib/openecomp-sdc-enrichment-api/src/main/java/org/openecomp/core/enrichment/types/ComponentMonitoringUploadInfo.java b/openecomp-be/lib/openecomp-sdc-enrichment-lib/openecomp-sdc-enrichment-api/src/main/java/org/openecomp/core/enrichment/types/ComponentMonitoringUploadInfo.java
index 63e161fae9..bd14e5a1e5 100644
--- a/openecomp-be/lib/openecomp-sdc-enrichment-lib/openecomp-sdc-enrichment-api/src/main/java/org/openecomp/core/enrichment/types/ComponentMonitoringUploadInfo.java
+++ b/openecomp-be/lib/openecomp-sdc-enrichment-lib/openecomp-sdc-enrichment-api/src/main/java/org/openecomp/core/enrichment/types/ComponentMonitoringUploadInfo.java
@@ -7,9 +7,9 @@
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
- *
+ *
* http://www.apache.org/licenses/LICENSE-2.0
- *
+ *
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@@ -17,33 +17,32 @@
* limitations under the License.
* ============LICENSE_END=========================================================
*/
-
package org.openecomp.core.enrichment.types;
+import static org.openecomp.core.enrichment.types.MonitoringUploadType.SNMP_POLL;
+import static org.openecomp.core.enrichment.types.MonitoringUploadType.SNMP_TRAP;
+import static org.openecomp.core.enrichment.types.MonitoringUploadType.VES_EVENTS;
+
import java.util.HashMap;
import java.util.Map;
-import static org.openecomp.core.enrichment.types.MonitoringUploadType.*;
-
public class ComponentMonitoringUploadInfo {
+ private Map<MonitoringUploadType, MonitoringArtifactInfo> infoByType = new HashMap<>();
- private Map<MonitoringUploadType, MonitoringArtifactInfo> infoByType = new HashMap<>();
-
- public MonitoringArtifactInfo getSnmpTrap() {
- return infoByType.get(SNMP_TRAP);
- }
+ public MonitoringArtifactInfo getSnmpTrap() {
+ return infoByType.get(SNMP_TRAP);
+ }
- public MonitoringArtifactInfo getSnmpPoll() {
- return infoByType.get(SNMP_POLL);
- }
+ public MonitoringArtifactInfo getSnmpPoll() {
+ return infoByType.get(SNMP_POLL);
+ }
- public MonitoringArtifactInfo getVesEvent() {
- return infoByType.get(VES_EVENTS);
- }
+ public MonitoringArtifactInfo getVesEvent() {
+ return infoByType.get(VES_EVENTS);
+ }
- public void setMonitoringArtifactFile(MonitoringUploadType type,
- MonitoringArtifactInfo monitoringArtifactInfo) {
- infoByType.put(type, monitoringArtifactInfo);
- }
+ public void setMonitoringArtifactFile(MonitoringUploadType type, MonitoringArtifactInfo monitoringArtifactInfo) {
+ infoByType.put(type, monitoringArtifactInfo);
+ }
}