Implemented refine statement parsing.
[controller.git] / opendaylight / sal / yang-prototype / yang / yang-model-util / src / main / java / org / opendaylight / controller / yang / model / util / EmptyType.java
1 /*
2  * Copyright (c) 2013 Cisco Systems, Inc. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8 package org.opendaylight.controller.yang.model.util;
9
10 import java.util.Collections;
11 import java.util.List;
12
13 import org.opendaylight.controller.yang.common.QName;
14 import org.opendaylight.controller.yang.model.api.SchemaPath;
15 import org.opendaylight.controller.yang.model.api.Status;
16 import org.opendaylight.controller.yang.model.api.UnknownSchemaNode;
17 import org.opendaylight.controller.yang.model.api.type.EmptyTypeDefinition;
18
19 public class EmptyType implements EmptyTypeDefinition {
20
21     private final QName name = BaseTypes.constructQName("empty");
22     private final SchemaPath path = BaseTypes.schemaPath(name);
23     private final String description = "The empty built-in type represents a leaf that does not have any value, it conveys information by its presence or absence.";
24     private final String reference = "https://tools.ietf.org/html/rfc6020#page-131";
25
26     @Override
27     public EmptyTypeDefinition getBaseType() {
28         return this;
29     }
30
31     @Override
32     public String getUnits() {
33         return null;
34     }
35
36     @Override
37     public Object getDefaultValue() {
38         return null;
39     }
40
41     @Override
42     public QName getQName() {
43         return name;
44     }
45
46     @Override
47     public SchemaPath getPath() {
48         return path;
49     }
50
51     @Override
52     public String getDescription() {
53         return description;
54     }
55
56     @Override
57     public String getReference() {
58         return reference;
59     }
60
61     @Override
62     public Status getStatus() {
63         return Status.CURRENT;
64     }
65
66     @Override
67     public List<UnknownSchemaNode> getUnknownSchemaNodes() {
68         return Collections.emptyList();
69     }
70
71 }