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

net.servicestack.client.Index Maven / Gradle / Ivy

The newest version!
//  Copyright (c) 2013-present ServiceStack, Inc. All rights reserved.
//  License: https://servicestack.net/bsd-license.txt

package net.servicestack.client;

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

@Retention(RetentionPolicy.RUNTIME)
public @interface Index {
    public String Name() default "";
    public boolean Unique() default false;
    public boolean Clustered() default false;
    public boolean NonClustered() default false;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy