summaryrefslogtreecommitdiffstats
path: root/appc-dg/appc-dg-shared/appc-dg-mdsal-store/src/main/java/org/openecomp/appc/mdsal/impl/Constants.java
blob: a41c49de7de494976ee942ead14b45e9842692a4 (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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
/*-
 * ============LICENSE_START=======================================================
 * openECOMP : APP-C
 * ================================================================================
 * Copyright (C) 2017 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.openecomp.appc.mdsal.impl;
/**
 * This class contains the definitions of all constant values used in the appc-dg-mdsal-store
 * These properties are used for creating osgi bundle zip file. It also defines contents for Blueprint.xml file of bundle
*/
public class Constants {

    private Constants(){}
    /**
     * Manifest attribute for OSGI Bundle Name
     */
    public static final String MANIFEST_ATTR_BUNDLE_NAME= "Bundle-Name";

    /**
     * Manifest attribute for OSGI Bundle Symbolic Name
     */
    public static final String MANIFEST_ATTR_BUNDLE_SYMBOLIC_NAME= "Bundle-SymbolicName";

    /**
     * Manifest attribute for OSGI Bundle Description
     */
    public static final String MANIFEST_ATTR_BUNDLE_DESCRIPTION= "Bundle-Description";

    /**
     * Manifest attribute for OSGI Bundle Manifest version
     */
    public static final String MANIFEST_ATTR_BUNDLE_MANIFEST_VERSION= "Bundle-ManifestVersion";

    /**
     * Manifest attribute for OSGI Bundle Version
     */
    public static final String MANIFEST_ATTR_BUNDLE_VERSION= "Bundle-Version";

    /**
     * Manifest attribute for OSGI Bundle Blueprint
     */
    public static final String MANIFEST_ATTR_BUNDLE_BLUEPRINT= "Bundle-Blueprint";

    /**
     * Manifest value for Mainfest Version
     */
    public static final String MANIFEST_VALUE_VERSION= "1.0";

    /**
     * Manifest value for OSGI Bundle Vesion
     */
    public static final String MANIFEST_VALUE_BUNDLE_MAN_VERSION= "2";

    /**
     * Manifest value for OSGI Bundle Blueprint location
     */
    public static final String MANIFEST_VALUE_BUNDLE_BLUEPRINT= "OSGI-INF/blueprint/blueprint.xml";

    /**
     * Base URL for config actions exposed by RESTCONF API
     */

    public static final String CONFIG_URL = "https://localhost:8443/restconf/config";

    /**
     * Content for blueprint.xml used while creation of OSGI bundle.
     */
    public static final String BLUEPRINT = "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n" +
            "<!--\n" +
            "    Starter Blueprint Camel Definition appc-aai-adapter-blueprint\n" +
            "-->\n" +
            "<blueprint xmlns=\"http://www.osgi.org/xmlns/blueprint/v1.0.0\"\n" +
            "                       xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"\n" +
            "                       xsi:schemaLocation=\"http://www.osgi.org/xmlns/blueprint/v1.0.0 http://www.osgi.org/xmlns/blueprint/v1.0.0/blueprint.xsd\">\n" +
            "\n" +
            "</blueprint>";

    /**
     * HTTP Header attribute for Content type - JSON
     */
    public static final String OPERATION_APPLICATION_JSON= " application/json";

    /**
     * HTTP protocol used for config operations
     */
    public static final String OPERATION_HTTPS= "https";

    /**
     *  Constant for backslash to be used while formatting URL
     */
    public static final String URL_BACKSLASH ="/";
}