Skip to content

Commit

Permalink
remove email
Browse files Browse the repository at this point in the history
  • Loading branch information
areyouok committed Oct 11, 2023
1 parent 9fbfef6 commit f601b73
Show file tree
Hide file tree
Showing 291 changed files with 291 additions and 291 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
import java.time.Duration;

/**
* @author <a href="mailto:areyouok@gmail.com">huangli</a>
* @author huangli
*/
public interface CacheConsts {
String DEFAULT_AREA = "default";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
import java.lang.annotation.*;

/**
* @author <a href="mailto:areyouok@gmail.com">huangli</a>
* @author huangli
*/
@Documented
@Retention(RetentionPolicy.RUNTIME)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
import java.util.concurrent.TimeUnit;

/**
* @author <a href="mailto:areyouok@gmail.com">huangli</a>
* @author huangli
*/
@Documented
@Retention(RetentionPolicy.RUNTIME)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
import java.util.concurrent.TimeUnit;

/**
* @author <a href="mailto:areyouok@gmail.com">huangli</a>
* @author huangli
*/
@Documented
@Retention(RetentionPolicy.RUNTIME)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
package com.alicp.jetcache.anno;

/**
* @author <a href="mailto:areyouok@gmail.com">huangli</a>
* @author huangli
*/
public enum CacheType {
REMOTE, LOCAL, BOTH
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
import java.lang.annotation.*;

/**
* @author <a href="mailto:areyouok@gmail.com">huangli</a>
* @author huangli
*/
@Documented
@Retention(RetentionPolicy.RUNTIME)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
import java.util.concurrent.TimeUnit;

/**
* @author <a href="mailto:areyouok@gmail.com">huangli</a>
* @author huangli
*/
@Documented
@Retention(RetentionPolicy.RUNTIME)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* @deprecated replaced by CacheManager.getOrCreateCache(QuickConfig), the CacheManager instance
* can be injected use annotation such as @Autowired.
*
* @author <a href="mailto:areyouok@gmail.com">huangli</a>
* @author huangli
*/
@Documented
@Retention(RetentionPolicy.RUNTIME)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
import java.lang.annotation.*;

/**
* @author <a href="mailto:areyouok@gmail.com">huangli</a>
* @author huangli
*/
@Documented
@Retention(RetentionPolicy.RUNTIME)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
* A custom key convertor implements Function<Object, Object> is enough.
* If a key convertor implements this interface, it can process byte[] and String, see AbstractExternalCache.
*
* @author <a href="mailto:areyouok@gmail.com">huangli</a>
* @author huangli
*/
public interface KeyConvertor extends Function<Object, Object> {
String NONE = "NONE";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
import java.util.function.Function;

/**
* @author <a href="mailto:areyouok@gmail.com">huangli</a>
* @author huangli
*/
public interface SerialPolicy {
String JAVA = "JAVA";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
import org.springframework.beans.factory.annotation.Autowired;

/**
* @author <a href="mailto:areyouok@gmail.com">huangli</a>
* @author huangli
*/
public class CacheAdvisor extends AbstractBeanFactoryPointcutAdvisor {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
import java.lang.reflect.Modifier;

/**
* @author <a href="mailto:areyouok@gmail.com">huangli</a>
* @author huangli
*/
public class CachePointcut extends StaticMethodMatcherPointcut implements ClassFilter {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
import java.lang.reflect.Method;

/**
* @author <a href="mailto:areyouok@gmail.com">huangli</a>
* @author huangli
*/
public class JetCacheInterceptor implements MethodInterceptor, ApplicationContextAware {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
import java.util.concurrent.locks.ReentrantLock;

/**
* @author <a href="mailto:areyouok@gmail.com">huangli</a>
* @author huangli
*/
public class CacheAnnotationParser implements BeanDefinitionParser {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
import org.springframework.beans.factory.xml.NamespaceHandlerSupport;

/**
* @author <a href="mailto:areyouok@gmail.com">huangli</a>
* @author huangli
*/
public class CacheNamespaceHandler extends NamespaceHandlerSupport {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
import org.springframework.context.annotation.Role;

/**
* @author <a href="mailto:areyouok@gmail.com">huangli</a>
* @author huangli
*/
@Configuration
public class CommonConfiguration {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
* @deprecated CreateCache annotation is replaced by CacheManager.getOrCreateCache(QuickConfig), the CacheManager instance
* can be injected use annotation such as @Autowired.
*
* @author <a href="mailto:areyouok@gmail.com">huangli</a>
* @author huangli
*/

import com.alicp.jetcache.anno.field.CreateCacheAnnotationBeanPostProcessor;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
/**
* Created on 2016/11/16.
*
* @author <a href="mailto:areyouok@gmail.com">huangli</a>
* @author huangli
*/
@Configuration
public class JetCacheProxyConfiguration implements ImportAware, ApplicationContextAware {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
/**
* Created on 2016/12/9.
*
* @author <a href="mailto:areyouok@gmail.com">huangli</a>
* @author huangli
* @see org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor
*/
@SuppressWarnings("AliMissingOverrideAnnotation")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
/**
* Created on 2016/12/13.
*
* @author <a href="mailto:areyouok@gmail.com">huangli</a>
* @author huangli
*/
class CreateCacheWrapper {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
import java.util.concurrent.TimeUnit;

/**
* @author <a href="mailto:areyouok@gmail.com">huangli</a>
* @author huangli
*/
public class CacheConfigUtil {
private static CachedAnnoConfig parseCached(Method m) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
import java.util.function.Supplier;

/**
* @author <a href="mailto:areyouok@gmail.com">huangli</a>
* @author huangli
*/
public class CacheHandler implements InvocationHandler {
private static Logger logger = LoggerFactory.getLogger(CacheHandler.class);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
import java.util.List;

/**
* @author <a href="mailto:areyouok@gmail.com">huangli</a>
* @author huangli
*/
public class CacheInvokeConfig {
private CachedAnnoConfig cachedAnnoConfig;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
import java.util.function.Function;

/**
* @author <a href="mailto:areyouok@gmail.com">huangli</a>
* @author huangli
*/
public class CacheInvokeContext {
private Invoker invoker;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
import java.util.concurrent.ConcurrentHashMap;

/**
* @author <a href="mailto:areyouok@gmail.com">huangli</a>
* @author huangli
*/
public class ClassUtil {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
package com.alicp.jetcache.anno.method;

/**
* @author <a href="mailto:areyouok@gmail.com">huangli</a>
* @author huangli
*/
enum EL {
BUILD_IN, MVEL, SPRING_EL
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
import java.util.regex.Pattern;

/**
* @author <a href="mailto:areyouok@gmail.com">huangli</a>
* @author huangli
*/
public class ExpressionEvaluator implements Function<Object, Object> {
private static final Pattern pattern = Pattern.compile("\\s*(\\w+)\\s*\\{(.+)\\}\\s*");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
import org.slf4j.LoggerFactory;

/**
* @author <a href="mailto:areyouok@gmail.com">huangli</a>
* @author huangli
*/
class ExpressionUtil {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
package com.alicp.jetcache.anno.method;

/**
* @author <a href="mailto:areyouok@gmail.com">huangli</a>
* @author huangli
*/
public interface Invoker {
Object invoke() throws Throwable;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
import java.lang.reflect.Proxy;

/**
* @author <a href="mailto:areyouok@gmail.com">huangli</a>
* @author huangli
*/
public class ProxyUtil {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
/**
* Created on 2016/10/19.
*
* @author <a href="mailto:areyouok@gmail.com">huangli</a>
* @author huangli
*/
public class SpringCacheContext extends CacheContext {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
import org.springframework.context.ApplicationContext;

/**
* @author <a href="mailto:areyouok@gmail.com">huangli</a>
* @author huangli
*/
public class SpringCacheInvokeContext extends CacheInvokeContext {
protected ApplicationContext context;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
import java.util.function.Function;

/**
* @author <a href="mailto:areyouok@gmail.com">huangli</a>
* @author huangli
*/
public class CacheAnnoConfig {
private String area;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
import java.util.function.Supplier;

/**
* @author <a href="mailto:areyouok@gmail.com">huangli</a>
* @author huangli
*/
public class CacheContext {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
package com.alicp.jetcache.anno.support;

/**
* @author <a href="mailto:areyouok@gmail.com">huangli</a>
* @author huangli
*/
public class CacheInvalidateAnnoConfig extends CacheAnnoConfig {
private boolean multi;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
import java.lang.reflect.Method;

/**
* @author <a href="mailto:areyouok@gmail.com">huangli</a>
* @author huangli
*/
public interface CacheNameGenerator {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
package com.alicp.jetcache.anno.support;

/**
* @author <a href="mailto:areyouok@gmail.com">huangli</a>
* @author huangli
*/
class CacheThreadLocal {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
import java.util.function.Function;

/**
* @author <a href="mailto:areyouok@gmail.com">huangli</a>
* @author huangli
*/
public class CacheUpdateAnnoConfig extends CacheAnnoConfig {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
import java.util.function.Function;

/**
* @author <a href="mailto:areyouok@gmail.com">huangli</a>
* @author huangli
*/
public class CachedAnnoConfig extends CacheAnnoConfig {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
import java.util.concurrent.ConcurrentHashMap;

/**
* @author <a href="mailto:areyouok@gmail.com">huangli</a>
* @author huangli
*/
public class ConfigMap {
private ConcurrentHashMap<String, CacheInvokeConfig> methodInfoMap = new ConcurrentHashMap<>();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
/**
* Created on 2016/11/29.
*
* @author <a href="mailto:areyouok@gmail.com">huangli</a>
* @author huangli
*/
public class ConfigProvider extends AbstractLifecycle {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
import java.util.regex.Pattern;

/**
* @author <a href="mailto:areyouok@gmail.com">huangli</a>
* @author huangli
*/
public class DefaultCacheNameGenerator implements CacheNameGenerator {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
import java.util.function.Function;

/**
* @author <a href="mailto:areyouok@gmail.com">huangli</a>
* @author huangli
*/
public class DefaultEncoderParser implements EncoderParser {
protected static Map<String, String> parseQueryParameters(String query) {
Expand Down
Loading

0 comments on commit f601b73

Please sign in to comment.