summaryrefslogtreecommitdiffstats
path: root/dcae-analytics/dcae-analytics-model/src/main/java/org/onap/dcae/analytics/model/AnalyticsModelConstants.java
blob: 30fb5f784e14c54feef04a8382d49b54d874a0d4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
/*
 * ================================================================================
 * Copyright (c) 2018 AT&T Intellectual Property. All rights reserved.
 * ================================================================================
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 * ============LICENSE_END=========================================================
 *
 */

package org.onap.dcae.analytics.model;

/**
 * Contains constants for DCAE Analytics Model Module
 *
 * @author Rajiv Singla
 */
public abstract class AnalyticsModelConstants {

    public static final String JSON_MODULE_GROUP_ID = "org.onap.dcae.analytics.model";
    public static final String JSON_MODULE_ARTIFACT_ID = "dcae-analytics-model";

    // ========================= UTILITIES =======================================//
    // DATE CONSTANTS
    public static final String ANALYTICS_DATE_FORMAT = "yyyy-MM-dd'T'HH:mm:ss.SSSZ";
    // RANDOM ID
    public static final Integer DEFAULT_RANDOM_ID_LENGTH = 5;
    // UTF-8 CHARSET NAME
    public static final String UTF8_CHARSET_NAME = "UTF-8";
    // REQUEST ID DELIMITER
    public static final String ANALYTICS_REQUEST_ID_DELIMITER = ":";

    private AnalyticsModelConstants() {
        // private constructor
    }


}