update MSO create service instance URL
[vid.git] / vid-app-common / src / main / java / org / onap / vid / mso / MsoProperties.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * VID
4  * ================================================================================
5  * Copyright (C) 2017 - 2019 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  * 
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  * 
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=========================================================
19  */
20
21 package org.onap.vid.mso;
22
23 import org.onap.portalsdk.core.util.SystemProperties;
24
25 /**
26  * The Class MsoProperties.
27  */
28 public class MsoProperties extends SystemProperties {
29
30         /** The Constant MSO_SERVER_URL. */
31         //VID Properties related to MSO
32         public static final String MSO_SERVER_URL = "mso.server.url";
33
34         /** The Constant MSO_DME2_SERVER_URL. */
35         public static final String MSO_DME2_SERVER_URL = "mso.dme2.server.url";
36
37         /** The Constant MSO_DME2_CLIENT_TIMEOUT. */
38         public static final String MSO_DME2_CLIENT_TIMEOUT = "mso.dme2.client.timeout";
39         
40         /** The Constant MSO_DME2_CLIENT_READ_TIMEOUT. */
41         public static final String MSO_DME2_CLIENT_READ_TIMEOUT = "mso.dme2.client.read.timeout";
42         
43         /** The Constant MSO_SERVER_URL_DEFAULT. */
44         public static final String MSO_SERVER_URL_DEFAULT= "";
45         
46         /** The Constant MSO_POLLING_INTERVAL_MSECS. */
47         // number of msecs to wait between polling requests
48         public static final String MSO_POLLING_INTERVAL_MSECS = "mso.polling.interval.msecs";
49
50         /** The Constant MSO_POLLING_INTERVAL_MSECS_DEFAULT. */
51         public static final String MSO_POLLING_INTERVAL_MSECS_DEFAULT = "60000";
52         
53         /** The Constant MSO_DME2_ENABLED. */
54         public static final String MSO_DME2_ENABLED = "mso.dme2.enabled";
55         
56         /** The Constant MSO_MAX_POLLS. */
57         public static final String MSO_MAX_POLLS = "mso.max.polls";
58         
59         /** The Constant MSO_MAX_POLLS_DEFAULT. */
60         public static final String MSO_MAX_POLLS_DEFAULT = "10"; //10
61         
62         /** The Constant MSO_USER_NAME. */
63         public static final String MSO_USER_NAME = "mso.user.name"; //m03346
64         
65         /** The Constant MSO_PASSWORD. */
66         public static final String MSO_PASSWORD = "mso.password.x";
67         
68         /** The Constant MSO_REST_API_SVC_INSTANCE. */
69     public static final String MSO_REST_API_E2E_SVC_INSTANCE = "mso.restapi.svc.e2einstance"; // /e2eServiceInstances/v3
70
71         /** The Constant MSO_REST_API_SVC_INSTANCE. */
72         public static final String MSO_RESTAPI_SERVICE_INSTANCE = "mso.restapi.service.instance"; // /serviceInstances/v2
73
74         /** The Constant MSO_REST_API_VNF_INSTANCE. */
75         public static final String MSO_REST_API_VNF_INSTANCE = "mso.restapi.vnf.instance";
76         
77         /** The Constant MSO_REST_API_VNF_CHANGE_MANAGEMENT_INSTANCE. */
78         public static final String MSO_REST_API_VNF_CHANGE_MANAGEMENT_INSTANCE = "mso.restapi.vnf.changemanagement.instance";
79         
80         /** The Constant MSO_REST_API_NETWORK_INSTANCE. */
81         public static final String MSO_REST_API_NETWORK_INSTANCE = "mso.restapi.network.instance";
82         
83         /** The Constant MSO_REST_API_GET_ORC_REQ. */
84         public static final String MSO_REST_API_GET_ORC_REQ = "mso.restapi.get.orc.req";
85         
86         /** The Constant MSO_REST_API_GET_ORC_REQS. */
87         public static final String MSO_REST_API_GET_ORC_REQS = "mso.restapi.get.orc.reqs";
88
89         /** The Constant MSO_REST_API_GET_MAN_TASK. */
90         public static final String MSO_REST_API_GET_MAN_TASKS = "mso.restapi.get.man.tasks";
91
92         /** The Constant MSO_REST_API_VF_MODULE_INSTANCE. */
93         public static final String MSO_REST_API_VF_MODULE_INSTANCE = "mso.restapi.vf.module.instance";
94
95         public static final String MSO_REST_API_VF_MODULE_SCALE_OUT = "mso.restapi.vf.module.scaleout";
96
97         /** The Constant MSO_REST_API_WORKFLOW_INSTANCE. */
98         public static final String MSO_REST_API_WORKFLOW_INSTANCE = "mso.restapi.workflow.invoke";
99
100         /** The Constant MSO_REST_API_VOLUME_GROUP_INSTANCE. */
101         public static final String MSO_REST_API_VOLUME_GROUP_INSTANCE = "mso.restapi.volume.group.instance";
102
103         /** The Constant MSO_REST_API_VOLUME_GROUP_INSTANCE. */
104         public static final String MSO_REST_API_INSTANCE_GROUP = "mso.restapi.instance.group";
105
106         /** The Constant MSO_REST_API_CONFIGURATION_INSTANCE. */
107         public static final String MSO_REST_API_CONFIGURATIONS = "mso.restapi.configurations";
108         public static final String MSO_REST_API_CONFIGURATION_INSTANCE = "mso.restapi.configuration.instance";
109
110         /** The Constant MSO_REST_API_OPERATIONAL_ENVIRONMENT */
111         public static final String MSO_REST_API_OPERATIONAL_ENVIRONMENT_ACTIVATE = "mso.restapi.operationalEnvironment.activate";
112         public static final String MSO_REST_API_OPERATIONAL_ENVIRONMENT_DEACTIVATE = "mso.restapi.operationalEnvironment.deactivate";
113
114         /** The Constant MSO_REST_API_OPERATIONAL_ENVIRONMENT_CREATE */
115         public static final String MSO_REST_API_OPERATIONAL_ENVIRONMENT_CREATE = "mso.restapi.operationalEnvironment.create";
116
117         /** The Constant MSO_REST_API_CLOUD_RESOURCES_REQUEST_STATUS */
118         public static final String MSO_REST_API_CLOUD_RESOURCES_REQUEST_STATUS = "mso.restapi.operationalEnvironment.cloudResourcesRequests.status";
119
120         /** The Constant MSO_REST_API_SERVICE_INSTANCE_ASSIGN */
121         public static final String MSO_REST_API_SERVICE_INSTANCE_ASSIGN = "mso.restapi.serviceInstanceAssign";
122
123         public static final String MSO_REST_API_WORKFLOW_SPECIFICATIONS= "mso.restapi.changeManagement.workflowSpecifications";
124 }