summaryrefslogtreecommitdiffstats
path: root/src/main/java/org/openecomp/sparky/viewandinspect/entity/JsonNode.java
blob: 735899a9719c9ffb3e868781c6a8de7818c9fa8f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
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
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
/**
 * ============LICENSE_START=======================================================
 * org.onap.aai
 * ================================================================================
 * Copyright © 2017 AT&T Intellectual Property. All rights reserved.
 * Copyright © 2017 Amdocs
 * ================================================================================
 * 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=========================================================
 *
 * ECOMP is a trademark and service mark of AT&T Intellectual Property.
 */
package org.openecomp.sparky.viewandinspect.entity;

import com.fasterxml.jackson.annotation.JsonIgnore;

import java.util.Collection;
import java.util.HashMap;
import java.util.Map;

import org.apache.log4j.Logger;

/*
 * We can use annotations to differentiate between intermediate data we use to build the node, and
 * the data that we actually want to appear in the exported JSON.
 */

/*
 * This is our current ( 14-June-2016 ) working schema that will remain organic until we get it just
 * right.
 *
 * { "item-type": "customer", "item-name-key": "subscriber-name", “item-name-value” :
 * “subscriber-name-123456789-aai847-data-01”, "item-properties": [{ "property-name":
 * "subscriber-name", "property-value": "subscriber-name-123456789-aai847-data-01" }, {
 * "property-name": "global-customer-id", "property-value":
 * "global-customer-id-123456789-aai847-data-01" } ], "node-meta": { “color” : “#f2d2d2”,
 * "isSearchTarget" : false, "nodeGroups" : "1,2,3,4" }, }
 * 
 */


/**
 * The Class JsonNode.
 */
public class JsonNode {

  private String id;
  private String itemType;
  private String itemNameKey;
  private String itemNameValue;
  private Map<String, String> itemProperties;
  private NodeMeta nodeMeta;

  @JsonIgnore
  private boolean isRootNode;


  @JsonIgnore
  private String resourceKey;
  @JsonIgnore
  private Collection<String> inboundNeighbors;

  @JsonIgnore
  private Collection<String> outboundNeighbors;


  @JsonIgnore
  private static final Logger LOG = Logger.getLogger(JsonNode.class);

  /**
   * Instantiates a new json node.
   *
   * @param ain the ain
   */
  public JsonNode(ActiveInventoryNode ain) {
    this.resourceKey = ain.getNodeId();
    this.itemProperties = ain.getProperties();
    this.setItemType(ain.getEntityType());
    this.setItemNameKey(ain.getPrimaryKeyName());
    this.setItemNameValue(ain.getPrimaryKeyValue());
    this.setId(ain.getNodeId());
    this.isRootNode = ain.isRootNode();

    if (LOG.isDebugEnabled()) {
      LOG.debug("---");
      LOG.debug("JsonNode constructor using AIN = " + ain.dumpNodeTree(true));
      LOG.debug("---");
    }

    inboundNeighbors = ain.getInboundNeighbors();
    outboundNeighbors = ain.getOutboundNeighbors();

    nodeMeta = new NodeMeta();

    nodeMeta.setNodeIssue(ain.isNodeIssue());
    nodeMeta.setNodeDepth(ain.getNodeDepth());

    nodeMeta.setNumInboundNeighbors(ain.getInboundNeighbors().size());
    nodeMeta.setNumOutboundNeighbors(ain.getOutboundNeighbors().size());

    nodeMeta.setAtMaxDepth(ain.isAtMaxDepth());
    nodeMeta.setSelfLinkResolved(!ain.isSelflinkRetrievalFailure());
    nodeMeta.setProcessingErrorOccurred(ain.isProcessingErrorOccurred());
    nodeMeta.setHasNeighbors(
        ain.getOutboundNeighbors().size() > 0 || ain.getInboundNeighbors().size() > 0);
    nodeMeta.setProcessingState(ain.getState());

  }

  public String getId() {
    return id;
  }

  public void setId(String id) {
    this.id = id;
  }

  public String getItemNameKey() {
    return itemNameKey;
  }

  public String getItemNameValue() {
    return itemNameValue;
  }

  public Map<String, String> getItemProperties() {
    return itemProperties;
  }

  public String getItemType() {
    return itemType;
  }

  public String getResourceKey() {
    return resourceKey;
  }

  public void setItemNameKey(String itemNameKey) {
    this.itemNameKey = itemNameKey;
  }

  public void setItemNameValue(String itemNameValue) {
    this.itemNameValue = itemNameValue;
  }

  public void setItemProperties(HashMap<String, String> itemProperties) {
    this.itemProperties = itemProperties;
  }

  public void setItemType(String itemType) {
    this.itemType = itemType;
  }

  public void setResourceKey(String resourceKey) {
    this.resourceKey = resourceKey;
  }

  public NodeMeta getNodeMeta() {
    return nodeMeta;
  }

  public void setNodeMeta(NodeMeta nodeMeta) {
    this.nodeMeta = nodeMeta;
  }

  public boolean isRootNode() {
    return isRootNode;
  }

  @Override
  public String toString() {
    return "JsonNode [" + (id != null ? "id=" + id + ", " : "")
        + (itemType != null ? "itemType=" + itemType + ", " : "")
        + (itemNameKey != null ? "itemNameKey=" + itemNameKey + ", " : "")
        + (itemNameValue != null ? "itemNameValue=" + itemNameValue + ", " : "")
        + (itemProperties != null ? "itemProperties=" + itemProperties + ", " : "")
        + (nodeMeta != null ? "nodeMeta=" + nodeMeta + ", " : "") + "isRootNode=" + isRootNode
        + ", " + (resourceKey != null ? "resourceKey=" + resourceKey + ", " : "")
        + (inboundNeighbors != null ? "inboundNeighbors=" + inboundNeighbors + ", " : "")
        + (outboundNeighbors != null ? "outboundNeighbors=" + outboundNeighbors : "") + "]";
  }


}