Update the license for 2017-2018 license
[aai/aai-common.git] / aai-core / src / main / java / org / onap / aai / restcore / util / EdgeRuleBean.java
1 /**
2  * ============LICENSE_START=======================================================
3  * org.onap.aai
4  * ================================================================================
5  * Copyright © 2017-2018 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.onap.aai.restcore.util;
21
22 public class EdgeRuleBean {
23         private String from;
24         private String to;
25         private String label;
26         private String direction;
27         private String multiplicity;
28         private String lineage;
29         private String preventDelete;
30         private String deleteOtherV;
31         private String svcInfra;
32         private String defaultVal;
33         
34         public String getFrom() {
35                 return from;
36         }
37         public void setFrom(String from) {
38                 this.from = from;
39         }
40         public String getTo() {
41                 return to;
42         }
43         public void setTo(String to) {
44                 this.to = to;
45         }
46         public String getLabel() {
47                 return label;
48         }
49         public void setLabel(String label) {
50                 this.label = label;
51         }
52         public String getDirection() {
53                 return direction;
54         }
55         public void setDirection(String direction) {
56                 this.direction = direction;
57         }
58         public String getMultiplicity() {
59                 return multiplicity;
60         }
61         public void setMultiplicity(String multiplicity) {
62                 this.multiplicity = multiplicity;
63         }
64         public String getDeleteOtherV() {
65                 return deleteOtherV;
66         }
67         public void setDeleteOtherV(String deleteOtherV) {
68                 this.deleteOtherV = deleteOtherV;
69         }
70         public String getPreventDelete() {
71                 return preventDelete;
72         }
73         public void setPreventDelete(String preventDelete) {
74                 this.preventDelete = preventDelete;
75         }
76         public String getSvcInfra() {
77                 return svcInfra;
78         }
79         public void setSvcInfra(String svcInfra) {
80                 this.svcInfra = svcInfra;
81         }
82         public String getLineage() {
83                 return lineage;
84         }
85         public void setLineage(String lineage) {
86                 this.lineage = lineage;
87         }
88         public String getDefault() {
89                 return defaultVal;
90         }
91         public void setDefault(String defaultVal) {
92                 this.defaultVal = defaultVal;
93         }
94 }