Package com.avaje.tests.model.ivo.converter

Source Code of com.avaje.tests.model.ivo.converter.MoneyTypeConverter

package com.avaje.tests.model.ivo.converter;

import java.math.BigDecimal;

import com.avaje.tests.model.ivo.Money;

/**
* Converts between Money and BigDecimal.
*/
public class MoneyTypeConverter {//implements ScalarTypeConverter<Money,BigDecimal>{

    public BigDecimal unwrapValue(Money beanType) {
        return beanType.getAmount();
    }

    public Money wrapValue(BigDecimal scalarType) {       
        return new Money(scalarType);
    }
   
}
TOP

Related Classes of com.avaje.tests.model.ivo.converter.MoneyTypeConverter

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.