Package org.apache.struts2.ognl
Class XWorkTypeConverterWrapper
java.lang.Object
org.apache.struts2.ognl.XWorkTypeConverterWrapper
- All Implemented Interfaces:
TypeConverter
Wraps an OGNL TypeConverter as an XWork TypeConverter
-
Field Summary
Fields inherited from interface org.apache.struts2.conversion.TypeConverter
NO_CONVERSION_POSSIBLE
-
Constructor Summary
Constructors -
Method Summary
-
Constructor Details
-
XWorkTypeConverterWrapper
public XWorkTypeConverterWrapper(ognl.TypeConverter conv)
-
-
Method Details
-
convertValue
public Object convertValue(Map context, Object target, Member member, String propertyName, Object value, Class toType) Description copied from interface:TypeConverter
Converts the given value to a given type. The OGNL context, target, member and name of property being set are given. This method should be able to handle conversion in general without any context, target, member or property name specified.- Specified by:
convertValue
in interfaceTypeConverter
- Parameters:
context
- context under which the conversion is being donetarget
- target object in which the property is being setmember
- member (Constructor, Method or Field) being setpropertyName
- property name being setvalue
- value to be convertedtoType
- type to which value is converted- Returns:
- Converted value of type toType or TypeConverter.NoConversionPossible to indicate that the conversion was not possible.
-