Package org.smooks.engine.converter
Class XmlGregorianCalendarToStringConverterFactory
- java.lang.Object
-
- org.smooks.engine.converter.XmlGregorianCalendarToStringConverterFactory
-
- All Implemented Interfaces:
TypeConverterFactory<XMLGregorianCalendar,String>
,Configurable
public class XmlGregorianCalendarToStringConverterFactory extends Object implements TypeConverterFactory<XMLGregorianCalendar,String>, Configurable
XMLGregorianCalendar
data decoder. Decodes the supplied string into aXMLGregorianCalendar
value based on the supplied "format
" parameter, or the default (see below). The default date format used is "yyyy-MM-dd'T'HH:mm:ss" (seeSimpleDateFormat
). This format is based on the ISO 8601 standard as used by the XML Schema type "dateTime". This decoder is synchronized on its underlyingSimpleDateFormat
instance.- Author:
- stefano.maestri@javalinux.it
-
-
Constructor Summary
Constructors Constructor Description XmlGregorianCalendarToStringConverterFactory()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description TypeConverter<XMLGregorianCalendar,String>
createTypeConverter()
Properties
getConfiguration()
Get the component configuration.TypeConverterDescriptor<Class<XMLGregorianCalendar>,Class<String>>
getTypeConverterDescriptor()
void
setConfiguration(Properties properties)
Set the component configuration.
-
-
-
Method Detail
-
createTypeConverter
public TypeConverter<XMLGregorianCalendar,String> createTypeConverter()
- Specified by:
createTypeConverter
in interfaceTypeConverterFactory<XMLGregorianCalendar,String>
-
getTypeConverterDescriptor
public TypeConverterDescriptor<Class<XMLGregorianCalendar>,Class<String>> getTypeConverterDescriptor()
- Specified by:
getTypeConverterDescriptor
in interfaceTypeConverterFactory<XMLGregorianCalendar,String>
-
setConfiguration
public void setConfiguration(Properties properties) throws SmooksConfigException
Description copied from interface:Configurable
Set the component configuration.- Specified by:
setConfiguration
in interfaceConfigurable
- Parameters:
properties
- The component configuration properties.- Throws:
SmooksConfigException
- Bad component configuration.
-
getConfiguration
public Properties getConfiguration()
Description copied from interface:Configurable
Get the component configuration.- Specified by:
getConfiguration
in interfaceConfigurable
- Returns:
- The component configuration properties.
-
-