Requirement and capabilities feature
[sdc.git] / test-apis-ci / src / main / java / org / openecomp / sdc / ci / tests / datatypes / RequirementDetails.java
1 /*
2  * Copyright © 2016-2018 European Support Limited
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 package org.openecomp.sdc.ci.tests.datatypes;
18
19 public class RequirementDetails {
20     private String capability;
21     private String name;
22     private String node;
23     private String relationship;
24     private String maxOccurrences;
25     private String minOccurrences;
26
27     public String getCapability() {
28         return capability;
29     }
30
31     public void setCapability(String capability) {
32         this.capability = capability;
33     }
34
35     public String getName() {
36         return name;
37     }
38
39     public void setName(String name) {
40         this.name = name;
41     }
42
43     public String getNode() {
44         return node;
45     }
46
47     public void setNode(String node) {
48         this.node = node;
49     }
50
51     public String getRelationship() {
52         return relationship;
53     }
54
55     public void setRelationship(String relationship) {
56         this.relationship = relationship;
57     }
58
59     public String getMaxOccurrences() {
60         return maxOccurrences;
61     }
62
63     public void setMaxOccurrences(String maxOccurrences) {
64         this.maxOccurrences = maxOccurrences;
65     }
66
67     public String getMinOccurrences() {
68         return minOccurrences;
69     }
70
71     public void setMinOccurrences(String minOccurrences) {
72         this.minOccurrences = minOccurrences;
73     }
74 }