Payment.java 192B

123456789101112131415
  1. package com.zipcoder.payment;
  2. public interface Payment extends Comparable<Payment> {
  3. public long getId();
  4. public String getPayerName();
  5. public String getShortDescription();
  6. }