1 /*2 * Created on Mar 4, 20043 *4 */5 package com.openedit.store;6 7 /**8 * @author dbrown9 *10 */11 public abstract class PaymentMethod12 {13 14 public PaymentMethod()15 {16 }17 18 public abstract boolean requiresValidation();19 20 public abstract String getType();21 }22