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