Bulk-add copyright headers to java files
[controller.git] / opendaylight / md-sal / sal-rest-connector / src / test / java / org / opendaylight / controller / sal / restconf / impl / test / DummyType.java
1 /*
2  * Copyright (c) 2014 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.sal.restconf.impl.test;
9
10 import java.util.List;
11
12 import org.opendaylight.yangtools.yang.common.QName;
13 import org.opendaylight.yangtools.yang.model.api.*;
14
15 public class DummyType implements TypeDefinition<DummyType> {
16     QName dummyQName = TestUtils.buildQName("dummy type", "simple:uri", "2012-12-17");
17
18     @Override
19     public QName getQName() {
20         return dummyQName;
21     }
22
23     @Override
24     public SchemaPath getPath() {
25         // TODO Auto-generated method stub
26         return null;
27     }
28
29     @Override
30     public String getDescription() {
31         // TODO Auto-generated method stub
32         return null;
33     }
34
35     @Override
36     public String getReference() {
37         // TODO Auto-generated method stub
38         return null;
39     }
40
41     @Override
42     public Status getStatus() {
43         // TODO Auto-generated method stub
44         return null;
45     }
46
47     @Override
48     public List<UnknownSchemaNode> getUnknownSchemaNodes() {
49         // TODO Auto-generated method stub
50         return null;
51     }
52
53     @Override
54     public DummyType getBaseType() {
55         // TODO Auto-generated method stub
56         return null;
57     }
58
59     @Override
60     public String getUnits() {
61         // TODO Auto-generated method stub
62         return null;
63     }
64
65     @Override
66     public Object getDefaultValue() {
67         // TODO Auto-generated method stub
68         return null;
69     }
70
71 }