Update license header in appc-inbound files
[appc.git] / appc-inbound / appc-design-services / provider / src / main / java / org / onap / appc / design / services / util / DesignServiceConstants.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP : APPC
4  * ================================================================================
5  * Copyright (C) 2017-2018 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  * ============LICENSE_END=========================================================
22  */
23
24 package org.onap.appc.design.services.util;
25
26 public class DesignServiceConstants {
27             
28         public static final String STRING_ENCODING = "utf-8";
29         public static final String Y = "Y";
30         public static final String N = "N";
31         public static final String DATA_TYPE_TEXT = "TEXT";
32         public static final String DATA_TYPE_JSON = "JSON";
33         public static final String DATA_TYPE_XML = "XML";
34         public static final String DATA_TYPE_YAML = "YAML";
35         public static final String DATA_TYPE_VELOCITY = "VELOCITY";
36         public static final String DATA_TYPE_SQL = "SQL";
37             
38         public static final String GETDESIGNS = "getDesigns";
39         public static final String UPLOADARTIFACTS =  "uploadArtifacts";
40         public static final String  VALIDATETEMPLATE =  "validateTemplate";
41         public static final String GETSTATUS =  "getStatus";
42         public static final String SETSTATUS =  "setStatus";
43         public static final String GETGUIREFERENCE = "getGUIReference";
44         public static final String GETARTIFACTREFERENCE =   "getArtifactReference";
45         public static final String GETAAIDATA =  "getAAIData";
46         public static final String GETINSTARDATA =  "getInstarData";
47         public static final String PUBLISHARTIFACTS =  "publishdArtifacts";
48         public static final String ADDINCART =  "addInCart";  
49         
50         public static final String SUCCESS =  "success";
51         public static final String DESINGTIME = "DesignTime";
52         public static final String RUNTIME = "RunTime";
53         public static final String APPC_FLOW_CONTROLLER = "/appc-flow-controller.properties";
54         public static final String VNF_TYPE = "vnf-type";
55         public static final String ACTION = "action";
56         public static final String VNFC_TYPE = "vnfc-type";
57         public static final String VM_INSTANCE = "vm-instance";
58         public static final String VM = "vm";
59         public static final String VNFC = "vnfc";
60         
61         public static final String DOCUMENT_PARAMETERS = "document-parameters";
62         public static final String SERVICE_UUID  = "service-uuid";
63         public static final String DISTRIBUTION_ID  = "distribution-id";
64
65         public static final String SERVICE_NAME = "service-name"; 
66         public static final String SERVICE_DESCRIPTION ="service-description"; 
67         public static final String SERVICE_ARTIFACTS = "service-artifacts"; 
68         public static final String RESOURCE_UUID ="resource-uuid"; 
69         public static final String RESOURCE_INSTANCE_NAME = "resource-instance-name";
70         public static final String REOURCE_NAME = "resource-name";
71         public static final String RESOURCE_VERSOIN ="resource-version";
72         public static final String RESOURCE_TYPE= "resource-type"; 
73         public static final String ARTIFACT_UUID ="artifact-uuid";
74         public static final String ARTIFACT_NAME = "artifact-name"; 
75
76         public static final String ARTIFACT_VERSOIN = "artifact-version"; 
77         public static final String ARTIFACT_DESRIPTION = "artifact-description";
78         public static final String ARTIFACT_CONTENTS = "artifact-contents";
79         public static final String REQUEST_INFORMATION = "request-information";
80         public static final String INTERNAL_VERSION = "internal-versoin";
81         
82     
83         
84         public static final String DB_DT_ARTIFACT_TRACKING = "DT_ARTIFACT_TRACKING";
85         public static final String DB_SDC_REFERENCE = "ASDC_REFERENCE";
86         public static final String SCHEMA_SDNCTL = "SDNCTL";
87         public static final String GETARTIFACT = "getArtifact";
88         public static final String USER_ID = "userID";
89         public static final String ARTIFACT_TYPE = "artifact-type";
90         public static final String STATUS = "status";
91         public static final String UPLOADARTIFACT = "uploadArtifact";
92         public static final String REQUETS_ID = "request-id";
93         public static final String REQUEST_ACTION = "request-action";
94         public static final String SOURCE = "source";
95         public static final String DESIGN_SERVICE_PROPERTIES = "designService.properties";
96         public static final String DESIGN_TOOL = "Design-tool";
97         public static final String TECHNOLOGY = "technology";
98         public static final String PROTOCOL = "protocol";
99         public static final String SETPROTOCOLREFERENCE = "setProtocolReference";
100         public static final String ACTION_LEVEL = "action-level";
101         public static final String TEMPLATE = "template";
102         public static final String SETINCART = "setInCart";
103         public static final String INCART = "inCart";
104         public static final String STOREPASSWORD = "storeProperty";
105         public static final String INSTAR_V4_ADDRESS = "v4IPAddress";
106         public static final String INSTAR_V6_ADDRESS = "v6IPAddress";
107         public static final String INSTAR_V4_MASK = "v4Subnet";
108         public static final String INSTAR_V6_MASK = "v6Subnet";
109     }