Payment.java 171B

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