Fix checkstyle warnings in yang-jmx-generator.
[controller.git] / opendaylight / config / yang-jmx-generator / src / main / java / org / opendaylight / controller / config / yangjmxgenerator / attribute / VoidAttribute.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.config.yangjmxgenerator.attribute;
9
10 import javax.management.openmbean.OpenType;
11
12 public class VoidAttribute implements AttributeIfc {
13
14     private static VoidAttribute instance = new VoidAttribute();
15
16     public static VoidAttribute getInstance() {
17         return instance;
18     }
19
20     private VoidAttribute() {
21     }
22
23     @Override
24     public String getAttributeYangName() {
25         return null;
26     }
27
28     @Override
29     public String getNullableDescription() {
30         return null;
31     }
32
33     @Override
34     public String getNullableDefault() {
35         return null;
36     }
37
38     @Override
39     public String getUpperCaseCammelCase() {
40         return null;
41     }
42
43     @Override
44     public String getLowerCaseCammelCase() {
45         return null;
46     }
47
48     @Override
49     public OpenType<?> getOpenType() {
50         return null;
51     }
52 }