Initial TCA commit into DCAEGEN2
[dcaegen2/analytics/tca.git] / dcae-analytics-common / src / main / java / org / openecomp / dcae / apod / analytics / common / utils / PersistenceUtils.java
1 /*
2  * ===============================LICENSE_START======================================
3  *  dcae-analytics
4  * ================================================================================
5  *    Copyright © 2017 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  *  Licensed under the Apache License, Version 2.0 (the "License");
8  *  you may not use this file except in compliance with the License.
9  *   You may obtain a copy of the License at
10  *
11  *          http://www.apache.org/licenses/LICENSE-2.0
12  *
13  *  Unless required by applicable law or agreed to in writing, software
14  *  distributed under the License is distributed on an "AS IS" BASIS,
15  *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  *  See the License for the specific language governing permissions and
17  *  limitations under the License.
18  *  ============================LICENSE_END===========================================
19  */
20
21 package org.openecomp.dcae.apod.analytics.common.utils;
22
23 import java.util.Date;
24
25 /**
26  * Contains Utility methods for creating persistence row keys etc.
27  *
28  * @author Rajiv Singla . Creation Date: 11/16/2016.
29  */
30 public abstract class PersistenceUtils {
31
32
33     /**
34      * Name of the column which will contain Table Key
35      */
36     public static final String TABLE_ROW_KEY_COLUMN_NAME = "key";
37
38     /**
39      * Delimited to be used when creating a row key with multiple fields
40      */
41     public static final String ROW_KEY_DELIMITER = "-";
42
43
44     private PersistenceUtils() {
45
46     }
47
48     /**
49      * Creates a decreasing number using current timestamp. Handy when you want to keep records most recent records
50      * close to the top of column table like HBase
51      *
52      * @return decreasing number
53      */
54     public static String getCurrentTimeReverseSubKey() {
55         final long timeReverseLong = Long.MAX_VALUE - new Date().getTime();
56         return String.format("%025d", timeReverseLong);
57     }
58
59 }