Replaced all tabs with spaces in java and pom.xml
[so.git] / bpmn / mso-infrastructure-bpmn / src / test / java / org / onap / so / bpmn / vcpe / AbstractTestBase.java
1 /*
2  * ============LICENSE_START======================================================= ONAP - SO
3  * ================================================================================ Copyright (C) 2017 AT&T Intellectual
4  * Property. All rights reserved. ================================================================================
5  * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with
6  * the License. You may obtain a copy of the License at
7  * 
8  * http://www.apache.org/licenses/LICENSE-2.0
9  * 
10  * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on
11  * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the
12  * specific language governing permissions and limitations under the License.
13  * ============LICENSE_END=========================================================
14  */
15
16 package org.onap.so.bpmn.vcpe;
17
18 import org.onap.so.BaseIntegrationTest;
19 import org.onap.so.bpmn.infrastructure.FlakyTests;
20 import groovy.lang.Category;
21
22
23 @Category(FlakyTests.class)
24 public class AbstractTestBase extends BaseIntegrationTest {
25
26
27     public static final String CUST = "SDN-ETHERNET-INTERNET";
28     public static final String SVC = "123456789";
29     public static final String INST = "MIS%252F1604%252F0026%252FSW_INTERNET";
30     public static final String PARENT_INST = "MIS%252F1604%252F0027%252FSW_INTERNET";
31     public static final String ARID = "arId-1";
32     public static final String ARVERS = "1490627351232";
33
34     public static final String DEC_INST = "MIS%2F1604%2F0026%2FSW_INTERNET";
35     public static final String DEC_PARENT_INST = "MIS%2F1604%2F0027%2FSW_INTERNET";
36
37     public static final String VAR_SUCCESS_IND = "SuccessIndicator";
38     public static final String VAR_WFEX = "SavedWorkflowException1";
39     public static final String VAR_RESP_CODE = "CMSO_ResponseCode";
40     public static final String VAR_COMP_REQ = "CompleteMsoProcessRequest";
41 }