You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
package contentcouch.value;
import java.util.Date;
public interface Commit {
public Object getTarget();
public String getMessage();
public String getAuthor();
public Date getDate();
public Object[] getParents();
public String getUri();
}