OXM v12 updates
[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.annotation.JsonIgnore;
30 import com.fasterxml.jackson.core.JsonProcessingException;
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
42   /**
43    * Instantiates a new indexable cross entity reference.
44    */
45   public IndexableCrossEntityReference() {
46     super();
47   }
48
49   /**
50    * Adds the cross entity reference value.
51    *
52    * @param crossEntityReferenceValue the cross entity reference value
53    */
54   public void addCrossEntityReferenceValue(String crossEntityReferenceValue) {
55     if (!crossEntityReferenceCollection.contains(crossEntityReferenceValue)) {
56       crossEntityReferenceCollection.add(crossEntityReferenceValue);
57     }
58   }
59
60   public String getCrossReferenceEntityValues() {
61     return crossReferenceEntityValues;
62   }
63
64   public void setCrossReferenceEntityValues(String crossReferenceEntityValues) {
65     this.crossReferenceEntityValues = crossReferenceEntityValues;
66   }
67
68   /*
69    * (non-Javadoc)
70    * 
71    * @see org.openecomp.sparky.synchronizer.entity.IndexDocument#deriveFields()
72    */
73   @Override
74   public void deriveFields() {
75     this.id = NodeUtils.generateUniqueShaDigest(link);
76     this.crossReferenceEntityValues = NodeUtils.concatArray(crossEntityReferenceCollection, ";");
77   }
78
79   @JsonIgnore // Since this is a "get" we need to JSON ignore otherwise it will be called when converting to JSON
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   }
95 }