From add18afbfd2b49ee6ff8e26e7a765164fa4163d4 Mon Sep 17 00:00:00 2001 From: John Blum Date: Fri, 20 Sep 2019 01:42:40 -0700 Subject: [PATCH] Add TypelessAnnotationConfigSupport class extending SDG's o.s.d.g.config.annotation.support.AbstractAnnotationConfigSupport class, which is not based on any configuration-based annotation, but provides a means to utilize the helper methods. --- .../TypelessAnnotationConfigSupport.java | 39 +++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 spring-geode/src/main/java/org/springframework/geode/config/annotation/support/TypelessAnnotationConfigSupport.java diff --git a/spring-geode/src/main/java/org/springframework/geode/config/annotation/support/TypelessAnnotationConfigSupport.java b/spring-geode/src/main/java/org/springframework/geode/config/annotation/support/TypelessAnnotationConfigSupport.java new file mode 100644 index 00000000..416df989 --- /dev/null +++ b/spring-geode/src/main/java/org/springframework/geode/config/annotation/support/TypelessAnnotationConfigSupport.java @@ -0,0 +1,39 @@ +/* + * Copyright 2019 the original author or authors. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express + * or implied. See the License for the specific language governing + * permissions and limitations under the License. + */ +package org.springframework.geode.config.annotation.support; + +import java.lang.annotation.Annotation; + +import org.springframework.core.type.AnnotatedTypeMetadata; +import org.springframework.data.gemfire.config.annotation.support.AbstractAnnotationConfigSupport; + +/** + * The {@link TypelessAnnotationConfigSupport} class is an extension of SDG's {@link AbstractAnnotationConfigSupport} + * based class for resolving {@link AnnotatedTypeMetadata}, however, is not based on any specific {@link Annotation}. + * + * @author John Blum + * @see java.lang.annotation.Annotation + * @see org.springframework.core.type.AnnotatedTypeMetadata + * @see org.springframework.data.gemfire.config.annotation.support.AbstractAnnotationConfigSupport + * @since 1.2.0 + */ +public class TypelessAnnotationConfigSupport extends AbstractAnnotationConfigSupport { + + @Override + protected Class getAnnotationType() { + return null; + } +}