Update the dependencies to use project version
[aai/sparky-be.git] / src / main / java / org / onap / aai / sparky / sync / entity / IndexableCrossEntityReference.java
1 /**
2  * ============LICENSE_START=======================================================
3  * org.onap.aai
4  * ================================================================================
5  * Copyright © 2017 AT&T Intellectual Property. All rights reserved.
6  * Copyright © 2017 Amdocs
7  * ================================================================================
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  *
12  *       http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  * ============LICENSE_END=========================================================
20  *
21  * ECOMP is a trademark and service mark of AT&T Intellectual Property.
22  */
23 package org.onap.aai.sparky.sync.entity;
24
25 import java.util.ArrayList;
26
27 import org.onap.aai.sparky.util.NodeUtils;
28
29 import com.fasterxml.jackson.core.JsonProcessingException;
30 import com.fasterxml.jackson.databind.ObjectMapper;
31
32
33 /**
34  * The Class IndexableCrossEntityReference.
35  */
36
37 public class IndexableCrossEntityReference extends IndexableEntity implements IndexDocument {
38
39   protected String crossReferenceEntityValues;
40   protected ArrayList<String> crossEntityReferenceCollection = new ArrayList<String>();
41   protected ObjectMapper mapper = new ObjectMapper();
42
43   /**
44    * Instantiates a new indexable cross entity reference.
45    */
46   public IndexableCrossEntityReference() {
47     super();
48   }
49
50   /**
51    * Adds the cross entity reference value.
52    *
53    * @param crossEntityReferenceValue the cross entity reference value
54    */
55   public void addCrossEntityReferenceValue(String crossEntityReferenceValue) {
56     if (!crossEntityReferenceCollection.contains(crossEntityReferenceValue)) {
57       crossEntityReferenceCollection.add(crossEntityReferenceValue);
58     }
59   }
60
61   public String getCrossReferenceEntityValues() {
62     return crossReferenceEntityValues;
63   }
64
65   public void setCrossReferenceEntityValues(String crossReferenceEntityValues) {
66     this.crossReferenceEntityValues = crossReferenceEntityValues;
67   }
68
69   /*
70    * (non-Javadoc)
71    * 
72    * @see org.openecomp.sparky.synchronizer.entity.IndexDocument#deriveFields()
73    */
74   @Override
75   public void deriveFields() {
76     this.id = NodeUtils.generateUniqueShaDigest(link);
77     this.crossReferenceEntityValues = NodeUtils.concatArray(crossEntityReferenceCollection, ";");
78   }
79
80   @Override
81   public String getAsJson() throws JsonProcessingException {
82
83     return NodeUtils.convertObjectToJson(this, false);
84
85   }
86
87   @Override
88   public String toString() {
89     return "IndexableCrossEntityReference ["
90         + (crossReferenceEntityValues != null
91             ? "crossReferenceEntityValues=" + crossReferenceEntityValues + ", " : "")
92         + (crossEntityReferenceCollection != null
93             ? "crossEntityReferenceCollection=" + crossEntityReferenceCollection + ", " : "")
94         + (mapper != null ? "mapper=" + mapper : "") + "]";
95   }
96
97
98
99 }