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

net.java.ao.schema.Index Maven / Gradle / Ivy

Go to download

This is the core library for Active Objects. It is generic and can be embedded in any environment. As such it is generic and won't contain all connection pooling, etc.

There is a newer version: 6.1.1
Show newest version
package net.java.ao.schema;

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

/**
 * Defines a database index.
 *
 * 

* The index can be either simple or composite. * Please note that the actual name of the index may differ. This field is case insensitive. *

* */ @Retention(RetentionPolicy.RUNTIME) @Target({}) public @interface Index { /** * @return the table unique index name. */ String name(); /** * @return an array of accessors or mutators to the columns that should be included in the index. */ String[] methodNames(); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy