Refactored SchemaPath for yang java types. Fixed SchemaPath for augmented nodes types.
[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 final class EmptyType implements EmptyTypeDefinition {
20
21     private final QName name = BaseTypes.constructQName("empty");
22     private final SchemaPath path;
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     private final EmptyTypeDefinition baseType;
26
27     private EmptyType() {
28         path = BaseTypes.schemaPath(name);
29         this.baseType = this;
30     }
31
32     public EmptyType(final SchemaPath path) {
33         this.path = path;
34         this.baseType = new EmptyType();
35     }
36
37     @Override
38     public EmptyTypeDefinition getBaseType() {
39         return baseType;
40     }
41
42     @Override
43     public String getUnits() {
44         return null;
45     }
46
47     @Override
48     public Object getDefaultValue() {
49         return null;
50     }
51
52     @Override
53     public QName getQName() {
54         return name;
55     }
56
57     @Override
58     public SchemaPath getPath() {
59         return path;
60     }
61
62     @Override
63     public String getDescription() {
64         return description;
65     }
66
67     @Override
68     public String getReference() {
69         return reference;
70     }
71
72     @Override
73     public Status getStatus() {
74         return Status.CURRENT;
75     }
76
77     @Override
78     public List<UnknownSchemaNode> getUnknownSchemaNodes() {
79         return Collections.emptyList();
80     }
81
82 }