001    package edu.harvard.deas.hyperenc;
002    
003    /**
004     * Represents the result of a reconciliation.
005     */
006    public enum SlaveRecResult {
007      /** Reconciliation succeeded; the page hashes matched. */
008      SUCCESS,
009      /** Reconciliation failed; the page hashes did not match. */
010      FAILURE,
011      /** Reconciliation was not attempted; no matching page ID was found. */
012      NO_RESULT;
013    }