Merge of new rebased code
[appc.git] / appc-asdc-listener / appc-yang-generator / src / main / java / org / openecomp / appc / yang / objects / Leaf.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * openECOMP : APP-C
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights
6  *                                              reserved.
7  * ================================================================================
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  * 
12  *      http://www.apache.org/licenses/LICENSE-2.0
13  * 
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  * ============LICENSE_END=========================================================
20  */
21
22 package org.openecomp.appc.yang.objects;
23
24 public class Leaf {
25         private String name;
26         private String type;
27         private String description;
28         private String mandatory;
29         private String defaultValue;
30         
31         public String getName() {
32                 return name;
33         }
34         public void setName(String name) {
35                 this.name = name;
36         }
37         public String getType() {
38                 return type;
39         }
40         public void setType(String type) {
41                 this.type = type;
42         }
43         public String getDescription() {
44                 return description;
45         }
46         public void setDescription(String description) {
47                 this.description = description;
48         }
49         public String getMandatory() {
50                 return mandatory;
51         }
52         public void setMandatory(String mandatory) {
53                 this.mandatory = mandatory;
54         }
55         public String getDefaultValue() {
56                 return defaultValue;
57         }
58         public void setDefaultValue(String defaultValue) {
59                 this.defaultValue = defaultValue;
60         }
61         @Override
62         public String toString() {
63                 return "Leaf [name=" + name + ", type=" + type + ", description=" + description + ", mandatory=" + mandatory
64                                 + ", defaultValue=" + defaultValue + "]";
65         }       
66
67         
68         
69 }