d0c5990eb5168c7b33043e7f4d7d9f06f1ec7f6d
[appc.git] / appc-dispatcher / appc-workflow-management / appc-workflow-management-core / src / main / java / org / openecomp / appc / common / constant / Constants.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP : APPC
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Copyright (C) 2017 Amdocs
8  * =============================================================================
9  * Licensed under the Apache License, Version 2.0 (the "License");
10  * you may not use this file except in compliance with the License.
11  * You may obtain a copy of the License at
12  * 
13  *      http://www.apache.org/licenses/LICENSE-2.0
14  * 
15  * Unless required by applicable law or agreed to in writing, software
16  * distributed under the License is distributed on an "AS IS" BASIS,
17  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18  * See the License for the specific language governing permissions and
19  * limitations under the License.
20  * 
21  * ECOMP is a trademark and service mark of AT&T Intellectual Property.
22  * ============LICENSE_END=========================================================
23  */
24
25 package org.openecomp.appc.common.constant;
26
27 public class Constants {
28
29     public static final String DG_ATTRIBUTE_STATUS = "SvcLogic.status";
30     public static final String DG_STATUS_SUCCESS = "success";
31     public static final String DG_ATTRIBUTE_STATUS_CODE = "SvcLogic.status.code";
32     public static final String DG_OUTPUT_STATUS_CODE = "output.status.code";
33     public static final String DG_OUTPUT_STATUS_MESSAGE = "output.status.message";
34
35
36     /**
37      * The name of the property that contains the VM id value in the graph's context
38      */
39     public static final String VF_ID = "org.openecomp.appc.vfid";
40
41     /**
42      * The name of the property that contains the VF Type value in the graph's context
43      */
44     public static final String VF_TYPE = "org.openecomp.appc.vftype";
45
46     /**
47      * The name of the property that contains the service request id value in the graph's context
48      */
49     public static final String REQUEST_ID = "org.openecomp.appc.reqid";
50
51     /**
52      * The name of the property that indicates which method of the IaaS adapter to call
53      */
54     public static final String ACTION = "org.openecomp.appc.action";
55
56     public static final String PAYLOAD = "payload";
57
58     public static final String CONF_ID = "org.openecomp.appc.confid";
59
60     public static final String API_VERSION = "org.openecomp.appc.apiversion";
61
62     public static final String ORIGINATOR_ID = "org.openecomp.appc.originatorid";
63
64     public static final String OBJECT_ID ="org.openecomp.appc.objectid";
65
66     public static final String SUB_REQUEST_ID = "org.openecomp.appc.subrequestid";
67
68     public static final String ERROR_MESSAGE = "error-message";
69
70 }