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

com.bazaarvoice.ostrich.partition.PartitionKey Maven / Gradle / Ivy

package com.bazaarvoice.ostrich.partition;

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

import static java.lang.annotation.ElementType.PARAMETER;
import static java.lang.annotation.RetentionPolicy.RUNTIME;

@Target({PARAMETER})
@Retention(RUNTIME)
public @interface PartitionKey {
    /**
     * Defines name of the property key, i.e. the key in the {@link com.bazaarvoice.ostrich.PartitionContext}.
     */
    String value() default "";
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy