All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.firefly.db.annotation.Id Maven / Gradle / Ivy

package com.firefly.db.annotation;

import java.lang.annotation.*;

@Target({ElementType.FIELD, ElementType.METHOD})
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface Id {
    String value();

    boolean autoIncrement() default true;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy