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