task1/solution01/src/org/apidesign/apifest08/currency/ConversionRatioProvider.java
author japod@localhost
Sun, 28 Sep 2008 14:12:38 +0200
changeset 6 97662396c0fd
permissions -rw-r--r--
Adding solutions received for task1
     1 package org.apidesign.apifest08.currency;
     2 
     3 import java.math.BigDecimal;
     4 
     5 /**
     6  * Provider for conversion constant from any source
     7  * @author Ladislav Vitasek
     8  */
     9 public interface ConversionRatioProvider {
    10     public BigDecimal getCurrency1ToCurrency2Constant() throws CannotProvideValueException;
    11     public BigDecimal getCurrency2ToCurrency1Constant() throws CannotProvideValueException;
    12 }