renamed executeConversion to simply convert for readibility
This commit is contained in:
@@ -18,7 +18,7 @@ package org.springframework.core.convert;
|
||||
/**
|
||||
* A service interface for type conversion. This is the entry point into the convert system.
|
||||
* <p>
|
||||
* Call {@link #executeConversion(Object, TypeDescriptor)} to perform a thread-safe type conversion using
|
||||
* Call {@link #convert(Object, TypeDescriptor)} to perform a thread-safe type conversion using
|
||||
* this system.
|
||||
*
|
||||
* @author Keith Donald
|
||||
@@ -43,6 +43,6 @@ public interface ConversionService {
|
||||
* source to an instance of targetType
|
||||
* @throws ConversionException if an exception occurred during the conversion process
|
||||
*/
|
||||
public Object executeConversion(Object source, TypeDescriptor targetType);
|
||||
public Object convert(Object source, TypeDescriptor targetType);
|
||||
|
||||
}
|
||||
@@ -140,7 +140,7 @@ public class GenericConversionService implements ConversionService {
|
||||
}
|
||||
}
|
||||
|
||||
public Object executeConversion(Object source, TypeDescriptor targetType) {
|
||||
public Object convert(Object source, TypeDescriptor targetType) {
|
||||
if (source == null) {
|
||||
return null;
|
||||
}
|
||||
@@ -149,7 +149,7 @@ public class GenericConversionService implements ConversionService {
|
||||
return executor.execute(source);
|
||||
} else {
|
||||
if (parent != null) {
|
||||
return parent.executeConversion(source, targetType);
|
||||
return parent.convert(source, targetType);
|
||||
} else {
|
||||
throw new ConverterNotFoundException(source.getClass(), targetType,
|
||||
"No converter found that can convert from sourceType [" + source.getClass().getName()
|
||||
|
||||
Reference in New Issue
Block a user