Merge "Fix Blocker/Critical sonar issues"
[aai/sparky-be.git] / src / main / java / org / onap / aai / sparky / synchronizer / entity / IndexableEntity.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.synchronizer.entity;
24
25 import java.sql.Timestamp;
26 import java.text.SimpleDateFormat;
27
28 import org.onap.aai.sparky.config.oxm.OxmModelLoader;
29
30 /**
31  * The Class IndexableEntity.
32  */
33 public abstract class IndexableEntity {
34   protected String id; // generated, SHA-256 digest
35   protected String entityType;
36   protected String entityPrimaryKeyValue;
37   protected String lastmodTimestamp;
38   protected String link;
39   protected OxmModelLoader loader;
40
41   private static final String TIMESTAMP_FORMAT = "yyyy-MM-dd'T'HH:mm:ss.SSSZ";
42
43   /**
44    * Instantiates a new indexable entity.
45    */
46   public IndexableEntity() {
47     SimpleDateFormat dateFormat = new SimpleDateFormat(TIMESTAMP_FORMAT);
48     Timestamp timestamp = new Timestamp(System.currentTimeMillis());
49     String currentFormattedTimeStamp = dateFormat.format(timestamp);
50     this.setEntityTimeStamp(currentFormattedTimeStamp);
51   }
52
53   /**
54    * Instantiates a new indexable entity.
55    *
56    * @param loader the loader
57    */
58   public IndexableEntity(OxmModelLoader loader) {
59     this();
60     this.loader = loader;
61   }
62
63   public String getId() {
64     return id;
65   }
66
67   public String getEntityType() {
68     return entityType;
69   }
70
71   public String getEntityPrimaryKeyValue() {
72     return entityPrimaryKeyValue;
73   }
74
75   public String getEntityTimeStamp() {
76     return lastmodTimestamp;
77   }
78
79   public void setId(String id) {
80     this.id = id;
81   }
82
83   public void setEntityType(String entityType) {
84     this.entityType = entityType;
85   }
86
87   public void setEntityPrimaryKeyValue(String fieldValue) {
88     this.entityPrimaryKeyValue = fieldValue;
89   }
90
91   public void setEntityTimeStamp(String lastmodTimestamp) {
92     this.lastmodTimestamp = lastmodTimestamp;
93   }
94
95   public String getLink() {
96     return link;
97   }
98
99   public void setLink(String link) {
100     this.link = link;
101   }
102
103 }