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

com.maxifier.mxcache.Strategy Maven / Gradle / Ivy

/*
 * Copyright (c) 2008-2014 Maxifier Ltd. All Rights Reserved.
 */
package com.maxifier.mxcache;

import com.maxifier.mxcache.provider.CachingStrategy;

import java.lang.annotation.*;

/**
 * This annotation allows you to add your own caching strategy to a cached method.
 * @see com.maxifier.mxcache.UseStorage
 * @see com.maxifier.mxcache.UseStorageFactory
 *
 * @author Alexander Kochurov ([email protected])
 */
@Documented
@Retention (RetentionPolicy.RUNTIME)
@Target (ElementType.METHOD)
public @interface Strategy {
    Class value();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy