aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/java/org/onap/aai/babel/xml/generator/data/GeneratorConstants.java
blob: b9d8cb23c4c03521d8fbc7c155f8856b1cd1bfb9 (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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
/**
 * ============LICENSE_START=======================================================
 * org.onap.aai
 * ================================================================================
 * Copyright © 2017-2018 AT&T Intellectual Property. All rights reserved.
 * Copyright © 2017-2018 European Software Marketing Ltd.
 * ================================================================================
 * 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.aai.babel.xml.generator.data;

public class GeneratorConstants {

    /*
     * Private constructor to prevent instantiation
     */
    private GeneratorConstants() {
        throw new UnsupportedOperationException("This static class should not be instantiated!");
    }

    public static final String PROPERTY_ARTIFACT_GENERATOR_CONFIG_FILE = "artifactgenerator.config";

    public static final String VERSION = "version";
    public static final String CATEGORY = "category";
    public static final String SUBCATEGORY = "subcategory";
    public static final int ID_LENGTH = 36;

    public static final String GENERATOR_AAI_GENERATED_ARTIFACT_EXTENSION = "xml";

    // Error codes
    public static final String GENERATOR_INVOCATION_ERROR_CODE = "ARTIFACT_GENERATOR_INVOCATION_ERROR";

    // Error Constants
    public static final String GENERATOR_ERROR_INVALID_CLIENT_CONFIGURATION = "Invalid Client Configuration";
    public static final String GENERATOR_ERROR_ARTIFACT_GENERATION_FAILED =
            "Unable to generate artifacts for the provided input";
    public static final String GENERATOR_ERROR_SERVICE_INSTANTIATION_FAILED =
            "Artifact Generation Service Instantiation failed";

    // AAI Generator Error Messages
    public static final String GENERATOR_AAI_ERROR_CHECKSUM_MISMATCH = "Checksum Mismatch for file : %s";
    public static final String GENERATOR_AAI_ERROR_INVALID_TOSCA = "Invalid format for Tosca YML  : %s";
    public static final String GENERATOR_AAI_ERROR_UNSUPPORTED_WIDGET_OPERATION = "Operation Not Supported for Widgets";
    public static final String GENERATOR_AAI_ERROR_MISSING_SERVICE_TOSCA =
            "Service tosca missing from list of input artifacts";
    public static final String GENERATOR_AAI_ERROR_NULL_RESOURCE_VERSION_IN_SERVICE_TOSCA =
            "Invalid Service definition mandatory attribute version missing for resource with UUID: <%s>";

    public static final String GENERATOR_AAI_ERROR_INVALID_RESOURCE_VERSION_IN_SERVICE_TOSCA =
            "Cannot generate artifacts. Invalid Resource version in Service tosca for resource with " + "UUID: "
                    + "<%s>";
    public static final String GENERATOR_AAI_ERROR_MISSING_RESOURCE_TOSCA =
            "Cannot generate artifacts. Resource Tosca missing for resource with UUID: <%s>";

    public static final String GENERATOR_AAI_ERROR_MISSING_SERVICE_VERSION =
            "Cannot generate artifacts. Service version is not specified";

    public static final String GENERATOR_AAI_INVALID_SERVICE_VERSION =
            "Cannot generate artifacts. Service version is incorrect";

    // Logging constants
    public static final String PARTNER_NAME = "userId";
    public static final String ERROR_CATEGORY = "ErrorCategory";
    public static final String ERROR_CODE = "ErrorCode";
    public static final String ERROR_DESCRIPTION = "ErrorDescription";

    public static final String GENERATOR_ERROR_CODE = "300F";
    public static final String GENERATOR_PARTNER_NAME = "SDC Catalog";

    // AAI Generator Error Messages for Logging
    public static final String GENERATOR_AAI_CONFIGFILE_NOT_FOUND =
            "Cannot generate artifacts. Artifact Generator Configuration file not found at %s";
    public static final String GENERATOR_AAI_CONFIGLOCATION_NOT_FOUND =
            "Cannot generate artifacts. artifactgenerator.config system property not configured";
    public static final String GENERATOR_AAI_CONFIGLPROP_NOT_FOUND =
            "Cannot generate artifacts. Widget configuration not found for %s";
    public static final String GENERATOR_AAI_PROVIDING_SERVICE_MISSING =
            "Cannot generate artifacts. Providing Service is missing for allotted resource %s";
    public static final String GENERATOR_AAI_PROVIDING_SERVICE_METADATA_MISSING =
            "Cannot generate artifacts. Providing Service Metadata is missing for allotted resource %s";
}