Annotations

  • HBql provides the following annotations for associating a java class with a mapping:
public @interface Mapping {

    java.lang.String name();
}
public @interface Column {

    String name() default "";
}
public @interface ColumnVersionMap {

    String name() default "";
}

Example