File: IPaymentResponse.java

package info (click to toggle)
libjdepend-java 2.9-5
  • links: PTS, VCS
  • area: main
  • in suites: squeeze, wheezy
  • size: 820 kB
  • ctags: 782
  • sloc: java: 3,873; xml: 549; makefile: 7; sh: 6
file content (30 lines) | stat: -rw-r--r-- 643 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
package epayment.framework;

import java.io.Serializable;

/**
 * The <code>IPaymentResponse</code> interface defines
 * the interface for payment response information.
 * <p>
 * This class is strictly an example.
 *
 * @author <a href="mailto:mike@clarkware.com">Mike Clark</a>
 * @author <a href="http://www.clarkware.com">Clarkware Consulting</a>
 */
 
public interface IPaymentResponse extends Serializable {
	
	/**
	 * Returns the processed date.
	 *
	 * @return Processed date.
	 */
	public String getProcessedDate();
	
	/**
	 * Returns the response message.
	 *
	 * @return Response message.
	 */
	public String getResponseMessage();
}