Merge "Reorder modifiers"
[so.git] / mso-api-handlers / mso-api-handler-infra / src / main / java / org / openecomp / mso / apihandlerinfra / tenantisolationbeans / RelatedInstance.java
1 /*-\r
2  * ============LICENSE_START=======================================================\r
3  * ONAP - SO\r
4  * ================================================================================\r
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.\r
6  * ================================================================================\r
7  * Licensed under the Apache License, Version 2.0 (the "License");\r
8  * you may not use this file except in compliance with the License.\r
9  * You may obtain a copy of the License at\r
10  * \r
11  *      http://www.apache.org/licenses/LICENSE-2.0\r
12  * \r
13  * Unless required by applicable law or agreed to in writing, software\r
14  * distributed under the License is distributed on an "AS IS" BASIS,\r
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
16  * See the License for the specific language governing permissions and\r
17  * limitations under the License.\r
18  * ============LICENSE_END=========================================================\r
19  */\r
20 \r
21 package org.openecomp.mso.apihandlerinfra.tenantisolationbeans;\r
22 \r
23 import java.io.Serializable;\r
24 \r
25 import com.fasterxml.jackson.annotation.JsonInclude;\r
26 import com.fasterxml.jackson.annotation.JsonInclude.Include;\r
27 import com.fasterxml.jackson.annotation.JsonProperty;\r
28 import com.fasterxml.jackson.annotation.JsonRootName;\r
29 \r
30 @JsonRootName(value = "relatedInstance")\r
31 @JsonInclude(Include.NON_DEFAULT)\r
32 public class RelatedInstance implements Serializable {\r
33         \r
34         private static final long serialVersionUID = -6775477105573153067L;\r
35         @JsonProperty("instanceName")\r
36         protected String instanceName;\r
37         @JsonProperty("instanceId")\r
38         protected String instanceId;\r
39         @JsonProperty("resourceType")\r
40         protected ResourceType resourceType;\r
41 \r
42         public String getInstanceName() {\r
43                 return instanceName;\r
44         }\r
45         public void setInstanceName(String instanceName) {\r
46                 this.instanceName = instanceName;\r
47         }\r
48         public String getInstanceId() {\r
49                 return instanceId;\r
50         }\r
51         public void setInstanceId(String instanceId) {\r
52                 this.instanceId = instanceId;\r
53         }\r
54         public ResourceType getResourceType() {\r
55                 return resourceType;\r
56         }\r
57         public void setResourceType(ResourceType resourceType) {\r
58                 this.resourceType = resourceType;\r
59         }       \r
60 \r
61         @Override\r
62         public String toString() {\r
63                 return "RelatedInstance [instanceName=" + instanceName + \r
64                                               ", instanceId=" + instanceId + \r
65                                               ", resourceType=" + resourceType + "]";\r
66         }       \r
67         \r
68 }\r