CallContext.java

12 lines | 280 B Blame History Raw Download
package com.ning.billing.util;

import org.joda.time.DateTime;

public interface CallContext {
    public String getUserName();
    public CallOrigin getCallOrigin();
    public UserType getUserType();
    public DateTime getCreatedDate();
    public DateTime getUpdatedDate();
}