Anyone else out there converting input into currency stored as BigDecimals?
Using numberConverter doesn't cut it since it seems to want to return either a Long or a Double wrapped as a Number, and I don't see the point in wrapping all of my business bean accessor methods in Long-or-Double-to-BigDecimal code. My current thinking is to subclass NumberConverter to be a NumberAsBigDecimalConverter, which should work for my use case. Is there enough interest out there for me to add this as a tomahawk component?

