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

com.elepy.mongo.annotations.MongoIndex Maven / Gradle / Ivy

There is a newer version: 3.0.0-alpha-29
Show newest version
package com.elepy.mongo.annotations;

import java.lang.annotation.*;

@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.TYPE})
@Repeatable(MongoIndex.List.class)
public @interface MongoIndex {

    String[] properties();

    int text() default -1;

    long expireAfterSeconds() default -1;

    String name() default "";

    boolean unique() default false;

    @Retention(RetentionPolicy.RUNTIME)
    @Target({ElementType.TYPE})
    @interface List {
        MongoIndex[] value();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy