001 package com.hammurapi.convert;
002
003 import java.util.Collection;
004
005 /**
006 * A convenience interface for loading a collection of
007 * converters.
008 * @author Pavel
009 *
010 */
011 public interface AtomicConvertersBundle {
012
013 /**
014 * @return Collection of instances of AtomicConverter.
015 */
016 Collection<AtomicConverter<? extends Object,? extends Object>> getConverters();
017 }