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