org.springframework.classify.ClassifierAdapter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spring-retry Show documentation
Show all versions of spring-retry Show documentation
Spring Retry provides an abstraction around retrying failed operations, with an
emphasis on declarative control of the process and policy-based behaviour that is
easy to extend and customize. For instance, you can configure a plain POJO
operation to retry if it fails, based on the type of exception, and with a fixed
or exponential backoff.
The newest version!
/*
* Copyright 2006-2023 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.classify;
import org.springframework.classify.util.MethodInvoker;
import org.springframework.classify.util.MethodInvokerUtils;
import org.springframework.util.Assert;
/**
* Wrapper for an object to adapt it to the {@link Classifier} interface.
*
* @author Dave Syer
* @param the type of the thing to classify
* @param the output of the classifier
*/
@SuppressWarnings("serial")
public class ClassifierAdapter implements Classifier {
private MethodInvoker invoker;
private Classifier classifier;
/**
* Default constructor for use with setter injection.
*/
public ClassifierAdapter() {
super();
}
/**
* Create a new {@link Classifier} from the delegate provided. Use the constructor as
* an alternative to the {@link #setDelegate(Object)} method.
* @param delegate the delegate
*/
public ClassifierAdapter(Object delegate) {
setDelegate(delegate);
}
/**
* Create a new {@link Classifier} from the delegate provided. Use the constructor as
* an alternative to the {@link #setDelegate(Classifier)} method.
* @param delegate the classifier to delegate to
*/
public ClassifierAdapter(Classifier delegate) {
this.classifier = delegate;
}
public void setDelegate(Classifier delegate) {
this.classifier = delegate;
this.invoker = null;
}
/**
* Search for the {@link org.springframework.classify.annotation.Classifier
* Classifier} annotation on a method in the supplied delegate and use that to create
* a {@link Classifier} from the parameter type to the return type. If the annotation
* is not found a unique non-void method with a single parameter will be used, if it
* exists. The signature of the method cannot be checked here, so might be a runtime
* exception when the method is invoked if the signature doesn't match the classifier
* types.
* @param delegate an object with an annotated method
*/
public final void setDelegate(Object delegate) {
this.classifier = null;
this.invoker = MethodInvokerUtils
.getMethodInvokerByAnnotation(org.springframework.classify.annotation.Classifier.class, delegate);
if (this.invoker == null) {
this.invoker = MethodInvokerUtils.getMethodInvokerForSingleArgument(delegate);
}
Assert.state(this.invoker != null, "No single argument public method with or without "
+ "@Classifier was found in delegate of type " + delegate.getClass());
}
/**
* {@inheritDoc}
*/
@Override
@SuppressWarnings("unchecked")
public T classify(C classifiable) {
if (this.classifier != null) {
return this.classifier.classify(classifiable);
}
return (T) this.invoker.invokeMethod(classifiable);
}
}