Remove all redundant public modifiers in interfaces
[ovsdb.git] / library / src / main / java / org / opendaylight / ovsdb / lib / schema / typed / TypedColumn.java
1 /*
2  * Copyright (C) 2014 Red Hat, Inc.
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  * Authors : Madhu Venugopal
9  */
10
11 package org.opendaylight.ovsdb.lib.schema.typed;
12
13 import org.opendaylight.ovsdb.lib.notation.Version;
14
15 import java.lang.annotation.Retention;
16 import java.lang.annotation.RetentionPolicy;
17 import java.lang.annotation.Target;
18 import java.lang.annotation.ElementType;;
19
20 @Retention(RetentionPolicy.RUNTIME)
21 @Target(ElementType.METHOD)
22 public @interface TypedColumn {
23     String name();
24     MethodType method();
25     String fromVersion() default Version.NULL_VERSION_STRING;
26     String untilVersion() default Version.NULL_VERSION_STRING;
27 }