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