01: package epayment.framework;
02:
03: import java.io.Serializable;
04:
05: /**
06: * The <code>IPaymentResponse</code> interface defines
07: * the interface for payment response information.
08: * <p>
09: * This class is strictly an example.
10: *
11: * @author <a href="mailto:mike@clarkware.com">Mike Clark</a>
12: * @author <a href="http://www.clarkware.com">Clarkware Consulting</a>
13: */
14:
15: public interface IPaymentResponse extends Serializable {
16:
17: /**
18: * Returns the processed date.
19: *
20: * @return Processed date.
21: */
22: public String getProcessedDate();
23:
24: /**
25: * Returns the response message.
26: *
27: * @return Response message.
28: */
29: public String getResponseMessage();
30: }
|