[sdc] docker file fix for cassandra
[sdc.git] / openecomp-be / lib / openecomp-tosca-lib / src / main / java / org / openecomp / sdc / tosca / datatypes / model / RequirementAssignment.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.tosca.datatypes.model;
22
23 public class RequirementAssignment {
24
25   private String capability;
26   private String node;
27   private String relationship;
28   private NodeFilter node_filter;
29   private Object[] occurrences;
30
31   public String getCapability() {
32     return capability;
33   }
34
35   public void setCapability(String capability) {
36     this.capability = capability;
37   }
38
39   public String getNode() {
40     return node;
41   }
42
43   public void setNode(String node) {
44     this.node = node;
45   }
46
47   public String getRelationship() {
48     return relationship;
49   }
50
51   public void setRelationship(String relationship) {
52     this.relationship = relationship;
53   }
54
55   public NodeFilter getNode_filter() {
56     return node_filter;
57   }
58
59   public void setNode_filter(NodeFilter nodeFilter) {
60     this.node_filter = nodeFilter;
61   }
62
63   public Object[] getOccurrences() {
64     return occurrences;
65   }
66
67   public void setOccurrences(Object[] occurrences) {
68     this.occurrences = occurrences;
69   }
70 }