package com.zipcoder.payment; public interface Payment extends Comparable<Payment> { public String getID(); public String getPayerName(); public String getShortDescription(); }