/* * Copyright (c) 2010-2016. Axon Framework * * 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 * * http://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.axonframework.messaging.annotation; import org.axonframework.messaging.Message; import java.lang.annotation.Annotation; import java.util.Map; import java.util.Optional; /** * Abstract implementation of a {@link MessageHandlingMember} that delegates to a wrapped MessageHandlingMember. Extend * this class to provide additional functionality to the delegate member. * * @param <T> the entity type */ public abstract class WrappedMessageHandlingMember<T> implements MessageHandlingMember<T> { private final MessageHandlingMember<T> delegate; /** * Initializes the member using the given {@code delegate}. * * @param delegate the actual message handling member to delegate to */ protected WrappedMessageHandlingMember(MessageHandlingMember<T> delegate) { this.delegate = delegate; } @Override public Class<?> payloadType() { return delegate.payloadType(); } @Override public int priority() { return delegate.priority(); } @Override public boolean canHandle(Message<?> message) { return delegate.canHandle(message); } @Override public Object handle(Message<?> message, T target) throws Exception { return delegate.handle(message, target); } @SuppressWarnings("unchecked") @Override public <HT> Optional<HT> unwrap(Class<HT> handlerType) { if (handlerType.isInstance(this)) { return (Optional<HT>) Optional.of(this); } return delegate.unwrap(handlerType); } @Override public Optional<Map<String, Object>> annotationAttributes(Class<? extends Annotation> annotationType) { return delegate.annotationAttributes(annotationType); } @Override public boolean hasAnnotation(Class<? extends Annotation> annotationType) { return delegate.hasAnnotation(annotationType); } }