Added mac-address attribute to p-interface
[aai/aai-common.git] / aai-core / src / main / java / org / openecomp / aai / dbmodel / 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.openecomp.aai.dbmodel;
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 isParent;
30         private String usesResource;
31         private String hasDelTarget;
32         private String svcInfra;
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 getIsParent() {
65                 return isParent;
66         }
67         public void setParent(String isParent) {
68                 this.isParent = isParent;
69         }
70         public String getUsesResource() {
71                 return usesResource;
72         }
73         public void setUsesResource(String usesResource) {
74                 this.usesResource = usesResource;
75         }
76         public String getHasDelTarget() {
77                 return hasDelTarget;
78         }
79         public void setHasDelTarget(String hasDelTarget) {
80                 this.hasDelTarget = hasDelTarget;
81         }
82         public String getSvcInfra() {
83                 return svcInfra;
84         }
85         public void setSvcInfra(String svcInfra) {
86                 this.svcInfra = svcInfra;
87         }
88 }