Reformat catalog-model
[sdc.git] / catalog-model / src / main / java / org / openecomp / sdc / be / model / RequirementImplDef.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 package org.openecomp.sdc.be.model;
21
22 import java.util.Map;
23
24 public class RequirementImplDef {
25
26     private String uniqueId;
27     /**
28      * node type(mandatory). Unique id of the node we choose.
29      */
30     private String nodeId;
31     private Map<String, CapabiltyInstance> requirementProperties;
32     private Point point;
33
34     public String getNodeId() {
35         return nodeId;
36     }
37
38     public void setNodeId(String nodeId) {
39         this.nodeId = nodeId;
40     }
41
42     public String getUniqueId() {
43         return uniqueId;
44     }
45
46     public void setUniqueId(String uniqueId) {
47         this.uniqueId = uniqueId;
48     }
49
50     public Map<String, CapabiltyInstance> getRequirementProperties() {
51         return requirementProperties;
52     }
53
54     public void setRequirementProperties(Map<String, CapabiltyInstance> requirementProperties) {
55         this.requirementProperties = requirementProperties;
56     }
57
58     public Point getPoint() {
59         return point;
60     }
61
62     public void setPoint(Point point) {
63         this.point = point;
64     }
65
66     @Override
67     public String toString() {
68         return "RequirementImplDef [uniqueId=" + uniqueId + ", nodeId=" + nodeId + ", requirementProperties=" + requirementProperties + ", point="
69             + point + "]";
70     }
71 }