summaryrefslogtreecommitdiffstats
path: root/appc-oam/pom.xml
diff options
context:
space:
mode:
authorjenkins-releng <jenkins-releng@onap.org>2020-01-21 19:39:17 +0000
committerjenkins-releng <jenkins-releng@onap.org>2020-01-21 19:39:17 +0000
commitf16e1eef7e30a9b64b4dc65fd2ebaa147526270b (patch)
tree5fa0388d5a464f6275e4768f25b9f37ea502336e /appc-oam/pom.xml
parent21c6e0b092ba9546f2b3ec02d5f4b56177e08d3d (diff)
Release appc1.7.0
Diffstat (limited to 'appc-oam/pom.xml')
-rw-r--r--appc-oam/pom.xml2
1 files changed, 1 insertions, 1 deletions
diff --git a/appc-oam/pom.xml b/appc-oam/pom.xml
index 873a1b352..f4a03bfe5 100644
--- a/appc-oam/pom.xml
+++ b/appc-oam/pom.xml
@@ -48,5 +48,5 @@
<module>appc-oam-bundle</module>
</modules>
- <version>1.7.0-SNAPSHOT</version>
+ <version>1.7.0</version>
</project>
1 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140
/*
 * ============LICENSE_START=======================================================
 * VES Collector
 * ================================================================================
 * Copyright (C) 2020 Nokia. All rights reserved.s
 * ================================================================================
 * 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.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 * ============LICENSE_END=========================================================
 */
package org.onap.dcae.common.model;

import com.fasterxml.jackson.core.JsonProcessingException;
import com.fasterxml.jackson.databind.JsonNode;
import com.fasterxml.jackson.databind.ObjectMapper;
import org.json.JSONObject;

/**
 * This class is a wrapper for JSONObject, that represents VES event.
 * It contains Strings that represents key, that can be found in VES event.
 *
 * @author Zebek
 */
public class VesEvent {

    private static final String EVENT_LITERAL = "event";
    private static final String COMMON_EVENT_HEADER = "commonEventHeader";
    private static final String VES_UNIQUE_ID = "VESuniqueId";
    private static final String DOMAIN = "domain";
    private static final String STND_DEFINED_NAMESPACE = "stndDefinedNamespace";
    private static final String STND_DEFINED_DOMAIN = "stndDefined";
    private static final String STND_DEFINED_FIELDS = "stndDefinedFields";
    private static final String SCHEMA_REFERENCE = "schemaReference";

    private final JSONObject event;

    public VesEvent(JSONObject event) {
        this.event = event;
    }

    /**
     * Returns stream ID from VES event.
     *
     * @return stream ID
     */
    public String getStreamId() {
        String retVal = getDomain();

        if (isStdDefinedDomain(retVal)) {
            retVal = resolveDomainForStndDefinedEvent();
        }

        return retVal;
    }

    /**
     * Returns Domain name from VES event.
     *
     * @return domain
     */
    public String getDomain() {
        return getEventHeader().getString(DOMAIN);
    }

    public String getSchemaReference() {
        return getStndDefinedFields().getString(SCHEMA_REFERENCE);
    }

    private JSONObject getStndDefinedFields() {
        return event
                .getJSONObject(EVENT_LITERAL)
                .getJSONObject(STND_DEFINED_FIELDS);
    }

    private String resolveDomainForStndDefinedEvent() {
        final JSONObject eventHeader = getEventHeader();
        if(eventHeader.has(STND_DEFINED_NAMESPACE)) {
            final String domain = eventHeader
                    .getString(STND_DEFINED_NAMESPACE);
            if(domain.isEmpty()) {
                throw new StndDefinedNamespaceParameterHasEmptyValueException();
            }
            return domain;
        } else {
            throw new StndDefinedNamespaceParameterNotDefinedException();
        }
    }

    private JSONObject getEventHeader() {
        return event
                .getJSONObject(EVENT_LITERAL)
                .getJSONObject(COMMON_EVENT_HEADER);
    }

    private boolean isStdDefinedDomain(String domain) {
        return domain.equals(STND_DEFINED_DOMAIN);
    }

    /**
     * Returns unique ID of VES event.
     *
     * @return unique ID
     */
    public Object getUniqueId() {
        return event.get(VES_UNIQUE_ID);
    }

    /**
     * Returns VES event in form of JSON object.
     *
     * @return event in form of json Object
     */
    public JSONObject asJsonObject() {
        return new JSONObject(event.toString());
    }

    public JsonNode asJsonNode() throws JsonProcessingException {
        ObjectMapper objectMapper = new ObjectMapper();
        return objectMapper.readTree(event.toString());
    }

    /**
     * Checks if type of event is same as given in paramaters.
     *
     * @param type name that will be compared with event type
     * @return true or false depending if type given in parameter is same as VES event type
     */
    public boolean hasType(String type) {
        return this.event.has(type);
    }
}