Initial OpenECOMP SDC commit
[sdc.git] / ui-ci / src / main / java / org / openecomp / sdc / ci / tests / datatypes / ResourceCategoriesNameEnum.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * SDC
4  * ================================================================================
5  * Copyright (C) 2017 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 ResourceCategoriesNameEnum {
24         
25         GENERIC("checkbox-resourcenewcategory.generic"),
26         NETWORK_CONNECTIVITY("checkbox-resourcenewcategory.networkconnectivity"),
27         NETWORK_ELEMENTS("checkbox-resourcenewcategory.generic.networkelements"),
28         ABSTRACT("checkbox-resourcenewcategory.generic.abstract"),
29         DATABASE_GENERIC("checkbox-resourcenewcategory.generic.database"),
30         INFRASTRUCTURE("checkbox-resourcenewcategory.generic.infrastructure"),
31         VIRTUAL_LINKS("checkbox-resourcenewcategory.networkconnectivity.virtuallinks"),
32         CONNECTION_POINTS("checkbox-resourcenewcategory.networkconnectivity.connectionpoints"),
33         NETWORKL4("checkbox-resourcenewcategory.networkl4+"),
34         COMMON_NETWORK_RESOURCES("checkbox-resourcenewcategory.networkl4+.commonnetworkresources"),
35         APPLICATIONL4("checkbox-resourcenewcategory.applicationl4+"),
36         WEB_SERVER("checkbox-resourcenewcategory.applicationl4+.webserver"),
37         APPLICATION_SERVER("checkbox-resourcenewcategory.applicationl4+.applicationserver"),
38         CALL_CONTROL("checkbox-resourcenewcategory.applicationl4+.callcontrol"),
39         BORDER_ELEMENT("checkbox-resourcenewcategory.applicationl4+.borderelement"),
40         MEDIA_SERVERS("checkbox-resourcenewcategory.applicationl4+.mediaservers"),
41         DATABASE("checkbox-resourcenewcategory.applicationl4+.database"),
42         FIREWALL("checkbox-resourcenewcategory.applicationl4+.firewall"),
43         LOAD_BALANCER("checkbox-resourcenewcategory.applicationl4+.loadbalancer"),
44         NETWORK_L23("checkbox-resourcenewcategory.networkl2-3"),
45         Router("checkbox-resourcenewcategory.networkl2-3.router"),
46         WAN_Connectors("checkbox-resourcenewcategory.networkl2-3.wanconnectors"),
47         LAN_CONNECTORS("checkbox-resourcenewcategory.networkl2-3.lanconnectors"),
48         GATEWAY("checkbox-resourcenewcategory.networkl2-3.gateway"),
49         INFRASTRUCTUREL23("checkbox-resourcenewcategory.networkl2-3.infrastructure");
50         
51         
52         private String value;
53         
54         public String getValue(){
55                 return value;
56         }
57         
58         private ResourceCategoriesNameEnum(String value) {
59                 this.value = value;
60         }
61         
62
63 }