Fix checkstyle violations in yang-binding
[mdsal.git] / binding / yang-binding / src / main / java / org / opendaylight / yangtools / yang / binding / annotations / QName.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.yangtools.yang.binding.annotations;
9
10 import java.lang.annotation.Retention;
11 import java.lang.annotation.RetentionPolicy;
12
13 @Retention(RetentionPolicy.RUNTIME)
14 public @interface QName {
15
16     String namespace();
17     String revision();
18     String name();
19
20 }