Class PropertyTypeConverter

  • All Implemented Interfaces:
    ognl.TypeConverter

    public class PropertyTypeConverter
    extends Object
    implements ognl.TypeConverter
    PropertyEditor-based implementation of OGNL TypeConverter. This converter uses the PropertyEditor implementations in mina-integration-beans module to perform conversion. To use this converter:
    
     OgnlContext ctx = Ognl.createDefaultContext(root);
     ctx.put(OgnlContext.TYPE_CONVERTER_CONTEXT_KEY, new PropertyTypeConverter());
     
    You can also override getPropertyEditor(Class, String, Class) method to have more control over how an appropriate PropertyEditor is chosen.
    Author:
    Apache MINA Project
    • Constructor Detail

      • PropertyTypeConverter

        public PropertyTypeConverter()