com.ibm.commerce.foundation.dataload.config
Class AbstractValueHandler
- java.lang.Object
-
- com.ibm.commerce.foundation.dataload.config.AbstractValueHandler
-
- All Implemented Interfaces:
- ValueHandler
- Direct Known Subclasses:
- PatternValueHandler
public abstract class AbstractValueHandler extends java.lang.Object implements ValueHandler
This is an abstract class to implement the ValueHandler interface. All implementation classes of ValueHandler should extend this class. If the subclass overwrite any method, it should call the super first in case this class implements some default logic.
-
-
Constructor Summary
Constructors Constructor and Description AbstractValueHandler()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method and Description void
close()
Releases all resources used.void
init()
It does nothing.-
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface com.ibm.commerce.foundation.dataload.config.ValueHandler
resolveValue
-
-
-
-
Method Detail
-
init
public void init() throws DataLoadException
It does nothing. The subclass can overwrite this method to do some initialization.- Specified by:
init
in interfaceValueHandler
- Throws:
DataLoadException
- if there are some errors.
-
close
public void close()
Releases all resources used.- Specified by:
close
in interfaceValueHandler
-
-