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

io.mangoo.annotations.Collection Maven / Gradle / Ivy

The newest version!
package io.mangoo.annotations;

import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.TYPE)
public @interface Collection {
    /**
     * Specifies a specific class as a MongoDB entity
     *
     * @return The name of the collection in the database
     */
    public String name(); 
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy