Replaced all tabs with spaces in java and pom.xml
[so.git] / bpmn / MSOCoreBPMN / src / main / java / org / onap / so / bpmn / core / domain / NetworkResource.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP - SO
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.onap.so.bpmn.core.domain;
22
23 import java.util.UUID;
24 import com.fasterxml.jackson.annotation.JsonIgnore;
25 import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
26 import com.fasterxml.jackson.annotation.JsonRootName;
27
28
29 /**
30  * Encapsulates Network resource data set
31  *
32  */
33 @JsonRootName("networkResource")
34 public class NetworkResource extends Resource {
35
36     private static final long serialVersionUID = 1L;
37
38     /*
39      * set resourceType for this object
40      */
41     public NetworkResource() {
42         resourceType = ResourceType.NETWORK;
43         setResourceId(UUID.randomUUID().toString());
44     }
45
46     /*
47      * fields specific to Network resource type
48      */
49     private String networkType;
50     private String networkRole;
51     private String networkTechnology;
52     private String networkScope;
53
54     @JsonIgnore
55     private String resourceInput;
56
57     /*
58      * GET and SET
59      */
60     public String getNetworkType() {
61         return networkType;
62     }
63
64     public void setNetworkType(String networkType) {
65         this.networkType = networkType;
66     }
67
68     public String getNetworkRole() {
69         return networkRole;
70     }
71
72     public void setNetworkRole(String networkRole) {
73         this.networkRole = networkRole;
74     }
75
76     public String getNetworkTechnology() {
77         return networkTechnology;
78     }
79
80     public void setNetworkTechnology(String networkTechnology) {
81         this.networkTechnology = networkTechnology;
82     }
83
84     public String getNetworkScope() {
85         return networkScope;
86     }
87
88     public void setNetworkScope(String networkScope) {
89         this.networkScope = networkScope;
90     }
91
92     public String getResourceInput() {
93         return resourceInput;
94     }
95
96     public void setResourceInput(String resourceInput) {
97         this.resourceInput = resourceInput;
98     }
99 }