Updating licenses in all files
[appc.git] / appc-asdc-listener / appc-yang-generator / src / main / java / org / openecomp / appc / yang / objects / Leaf.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * APPC
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6  * Copyright (C) 2017 Amdocs
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  * ECOMP is a trademark and service mark of AT&T Intellectual Property.
21  */
22
23 package org.openecomp.appc.yang.objects;
24
25 public class Leaf {
26         private String name;
27         private String type;
28         private String description;
29         private String mandatory;
30         private String defaultValue;
31         
32         public String getName() {
33                 return name;
34         }
35         public void setName(String name) {
36                 this.name = name;
37         }
38         public String getType() {
39                 return type;
40         }
41         public void setType(String type) {
42                 this.type = type;
43         }
44         public String getDescription() {
45                 return description;
46         }
47         public void setDescription(String description) {
48                 this.description = description;
49         }
50         public String getMandatory() {
51                 return mandatory;
52         }
53         public void setMandatory(String mandatory) {
54                 this.mandatory = mandatory;
55         }
56         public String getDefaultValue() {
57                 return defaultValue;
58         }
59         public void setDefaultValue(String defaultValue) {
60                 this.defaultValue = defaultValue;
61         }
62         @Override
63         public String toString() {
64                 return "Leaf [name=" + name + ", type=" + type + ", description=" + description + ", mandatory=" + mandatory
65                                 + ", defaultValue=" + defaultValue + "]";
66         }       
67
68         
69         
70 }