task4/solution14/src/org/apidesign/apifest08/currency/TimeLimitedCurrencyRate.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Sat, 18 Oct 2008 08:40:32 +0200
changeset 74 c2585d97e1e3
permissions -rw-r--r--
We need to remove XML files describing the result of test run in case of successful build (e.g. there was a test failure) as that prevents Hudson from claiming the build is unstable.
jaroslav@67
     1
package org.apidesign.apifest08.currency;
jaroslav@67
     2
jaroslav@67
     3
jaroslav@67
     4
public interface TimeLimitedCurrencyRate extends CurrencyRate {
jaroslav@67
     5
jaroslav@67
     6
    public long getFromTime();
jaroslav@67
     7
    public long getToTime();
jaroslav@67
     8
jaroslav@67
     9
}