All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.corbel.lib.mongo.CurrencyMongoWriterConverter Maven / Gradle / Ivy

There is a newer version: 1.1.0
Show newest version
package io.corbel.lib.mongo;

import java.util.Currency;

import org.springframework.core.convert.converter.Converter;

import com.mongodb.BasicDBObject;
import com.mongodb.DBObject;

public class CurrencyMongoWriterConverter implements Converter {

	@Override
	public DBObject convert(Currency currency) {
		return new BasicDBObject("currencyCode", currency.getCurrencyCode());
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy