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

com.datastax.driver.mapping.annotation.Ttl Maven / Gradle / Ivy

package com.datastax.driver.mapping.annotation;

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

/**
 * Time to leave.
 */
@Target({ElementType.FIELD, ElementType.TYPE})
@Retention(RetentionPolicy.RUNTIME)
public @interface Ttl {
	
    /**
     * (Optional) Time to leave in seconds.
     * 

Defaults to 0 which means never expire. */ int value() default 0; }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy