Adding UI extensibility
[aai/sparky-be.git] / src / main / java / org / onap / aai / sparky / sync / entity / SearchableEntity.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 import java.util.List;
27
28 import org.onap.aai.sparky.util.NodeUtils;
29
30 import com.fasterxml.jackson.annotation.JsonIgnore;
31 import com.fasterxml.jackson.annotation.JsonProperty;
32 import com.fasterxml.jackson.core.JsonProcessingException;
33 import com.fasterxml.jackson.databind.ObjectMapper;
34
35 /**
36  * The Class SearchableEntity.
37  */
38 public class SearchableEntity extends IndexableEntity implements IndexDocument {
39
40   @JsonIgnore
41   protected List<String> searchTagCollection = new ArrayList<String>();
42
43   @JsonIgnore
44   protected List<String> searchTagIdCollection = new ArrayList<String>();
45
46   @JsonIgnore
47   protected ObjectMapper mapper = new ObjectMapper();
48
49   /**
50    * Instantiates a new searchable entity.
51    */
52   public SearchableEntity() {
53     super();
54   }
55
56   /*
57    * Generated fields, leave the settings for junit overrides
58    */
59
60   protected String searchTags; // generated based on searchTagCollection values
61
62   protected String searchTagIDs;
63
64   /**
65    * Generates the sha based id.
66    */
67   public void generateId() {
68     this.id = NodeUtils.generateUniqueShaDigest(link);
69   }
70
71   /*
72    * (non-Javadoc)
73    * 
74    * @see org.openecomp.sparky.synchronizer.entity.IndexDocument#deriveFields()
75    */
76   @Override
77   public void deriveFields() {
78
79     /*
80      * We'll try and create a unique identity key that we can use for differencing the previously
81      * imported record sets as we won't have granular control of what is created/removed and when.
82      * The best we can hope for is identification of resources by generated Id until the
83      * Identity-Service UUID is tagged against all resources, then we can use that instead.
84      */
85     generateId();
86     this.searchTags = NodeUtils.concatArray(searchTagCollection, ";");
87     this.searchTagIDs = NodeUtils.concatArray(this.searchTagIdCollection, ";");
88   }
89
90   /**
91    * Adds the search tag with key.
92    *
93    * @param searchTag the search tag
94    * @param searchTagKey the key associated with the search tag (key:value)
95    */
96   public void addSearchTagWithKey(String searchTag, String searchTagKey) {
97     searchTagIdCollection.add(searchTagKey);
98     searchTagCollection.add(searchTag);
99   }
100
101   public List<String> getSearchTagCollection() {
102     return searchTagCollection;
103   }
104
105   @JsonProperty("searchTags")
106   public String getSearchTags() {
107     return searchTags;
108   }
109
110   @JsonProperty("searchTagIDs")
111   public String getSearchTagIDs() {
112     return searchTagIDs;
113   }
114
115   @JsonIgnore
116   public List<String> getSearchTagIdCollection() {
117     return searchTagIdCollection;
118   }
119
120   @Override
121   @JsonIgnore
122   public String getAsJson() throws JsonProcessingException {
123     return NodeUtils.convertObjectToJson(this, false);
124   }
125
126   /*
127    * (non-Javadoc)
128    * 
129    * @see java.lang.Object#toString()
130    */
131   @Override
132   public String toString() {
133     return "IndexDocument [" + (entityType != null ? "entityType=" + entityType + ", " : "")
134         + (entityPrimaryKeyValue != null ? "entityPrimaryKeyValue=" + entityPrimaryKeyValue + ", "
135             : "")
136         + (searchTagCollection != null ? "searchTagCollection=" + searchTagCollection + ", " : "")
137         + (searchTagIdCollection != null ? "searchTagIDCollection=" + searchTagIdCollection + ", "
138             : "")
139         + (mapper != null ? "mapper=" + mapper + ", " : "") + (id != null ? "id=" + id + ", " : "")
140         + (lastmodTimestamp != null ? "lastmodTimestamp=" + lastmodTimestamp + ", " : "")
141         + (searchTags != null ? "searchTags=" + searchTags + ", " : "")
142         + (searchTagIDs != null ? "searchTagIDs=" + searchTagIDs : "") + "]";
143   }
144 }