Added oparent to sdc main
[sdc.git] / ui-ci / src / main / java / org / openecomp / sdc / ci / tests / datatypes / PortMirroringEnum.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * SDC
4  * ================================================================================
5  * Copyright (C) 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.openecomp.sdc.ci.tests.datatypes;
22
23 public enum PortMirroringEnum {
24
25     PMC_ELEMENT_IN_PALLETE("Port Mirroring Configuration"),
26     PMCP_ELEMENT_IN_PALLETE("Port Mirroring Configuration By Policy"),
27     PM_REQ_TYPE("org.openecomp.capabilities.PortMirroring"),
28     PMC_SOURCE_CAP("Port Mirroring Configuration 0: source: [1, UNBOUNDED]"),
29     PMC1_SOURCE_CAP("Port Mirroring Configuration 1: source: [1, UNBOUNDED]"),
30     PMCP_SOURCE_CAP("Port Mirroring Configuration By Policy 0: source: [1, UNBOUNDED]"),
31     PMCP1_SOURCE_CAP("Port Mirroring Configuration By Policy 1: source: [1, UNBOUNDED]"),
32     PMC_COLLECTOR_CAP("Port Mirroring Configuration 0: collector: [1, 1]"),
33     CISCO_VENDOR_NAME("CISCO"),
34     CISCO_VENDOR_MODEL_NUMBER("4500x"),
35     APCON1_VENDOR_NAME("APCON1"),
36     APCON1_VENDOR_MODEL_NUMBER("Test_APCON1"),
37     APCON2_VENDOR_NAME("APCON2"),
38     APCON2_VENDOR_MODEL_NUMBER("Test_APCON2"),
39     VMME_ZIP("2016-227_vmme_vmme_30_1610_e2e.zip"),
40     VPROBE_ZIP("vProbe_2017-10-22_07-24.zip"),
41     SERVICE_PROXY_TYPE("Service Proxy"),
42     SERVICE_TYPE("transport"),
43     TYPE("Resource"),
44     RESOURCE_TYPE("Configuration"),
45     CATEGORY("Configuration"),
46     SUB_CATEGORY("Configuration"),
47     NETWORK_ROLE_XPATH("//input[@name='network_role']"),
48     NFC_TYPE_XPATH("//input[@name='nfc_type']"),
49     PPS_CAPACITY_XPATH("//input[@name='pps_capacity']"),
50     NF_TYPE_XPATH("//input[@name='nf_type']"),
51     NETWORK_ROLE_VALUE("NETWORK ROLE TEXT"),
52     NFC_TYPE_VALUE("NFC TYPE TEXT"),
53     PPS_CAPACITY_VALUE("PPS CAPACITY TEXT"),
54     NF_TYPE_VALUE("NF TYPE TEXT"),
55     PMCP_NEWNAME("NewPMCP_Name");
56
57
58     private String value;
59
60     public String getValue() {
61         return value;
62     }
63
64     private PortMirroringEnum(String value) {
65         this.value = value;
66     }
67
68 }