/* * Copyright © 2014 YAOCHEN Corporation, All Rights Reserved */ package com.easyooo.framework.cache.annotations; import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; /** * 仅仅是一个线程安全的标记,提高可读新性, * 在编译之时,该注解会被清除 * * @author Killer */ @Retention(RetentionPolicy.SOURCE) @Target(ElementType.TYPE) public @interface ThreadSafety { }