aboutsummaryrefslogtreecommitdiffstats
path: root/app-c/appc/appc-dispatcher/appc-workflow-management/appc-workflow-management-core/src/main/java/org/openecomp/appc/common/constant/Constants.java
blob: 9ca02179006513e8777ce258245bb7ba26dfef8f (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
/*-
 * ============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.common.constant;

public class Constants {

    public static final String DG_ATTRIBUTE_STATUS = "SvcLogic.status";
    public static final String DG_STATUS_SUCCESS = "success";
    public static final String DG_ATTRIBUTE_STATUS_CODE = "SvcLogic.status.code";
    public static final String DG_OUTPUT_STATUS_CODE = "output.status.code";
    public static final String DG_OUTPUT_STATUS_MESSAGE = "output.status.message";


    /**
     * The name of the property that contains the VM id value in the graph's context
     */
    public static final String VF_ID = "org.openecomp.appc.vfid";

    /**
     * The name of the property that contains the VF Type value in the graph's context
     */
    public static final String VF_TYPE = "org.openecomp.appc.vftype";

    /**
     * The name of the property that contains the service request id value in the graph's context
     */
    public static final String REQUEST_ID = "org.openecomp.appc.reqid";

    /**
     * The name of the property that indicates which method of the IaaS adapter to call
     */
    public static final String ACTION = "org.openecomp.appc.action";

    public static final String PAYLOAD = "payload";

    public static final String CONF_ID = "org.openecomp.appc.confid";

    public static final String API_VERSION = "org.openecomp.appc.apiversion";

    public static final String ORIGINATOR_ID = "org.openecomp.appc.originatorid";

    public static final String OBJECT_ID ="org.openecomp.appc.objectid";

    public static final String SUB_REQUEST_ID = "org.openecomp.appc.subrequestid";

    public static final String ERROR_MESSAGE = "error-message";

}