Package com.skyline.energy.annotation

Examples of com.skyline.energy.annotation.CacheDelete


    Cache cache = method.getAnnotation(Cache.class);
    if (cache != null) {
      cacheDefinition = new CacheDefinition(cache, method);
    }

    CacheDelete cacheDelete = method.getAnnotation(CacheDelete.class);
    if (cacheDelete != null) {
      CacheDeleteDefinition definition = new CacheDeleteDefinition(cacheDelete, method);
      cacheDeleteDefinitions = lazyInit(cacheDeleteDefinitions);
      cacheDeleteDefinitions.add(definition);
    }
View Full Code Here

TOP

Related Classes of com.skyline.energy.annotation.CacheDelete

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.