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.
     1 package org.apidesign.apifest08.currency;
     2 
     3 
     4 public interface TimeLimitedCurrencyRate extends CurrencyRate {
     5 
     6     public long getFromTime();
     7     public long getToTime();
     8 
     9 }