| | |
| | | // in the response to the client. |
| | | private StringBuilder errorMessage; |
| | | |
| | | // Indicates whether this operation nneds to be synchronized to |
| | | // other copies of the data. |
| | | private boolean dontSynchronizeFlag; |
| | | |
| | | |
| | | |
| | | /** |
| | |
| | | } |
| | | |
| | | |
| | | /** |
| | | * Specifies whether this operation must be synchronized to other copies |
| | | * of the data. |
| | | * |
| | | * @param dontSynchronize Specifies whether this operation must be |
| | | * synchronized to other copies |
| | | * of the data. |
| | | */ |
| | | public final void setDontSynchronize(boolean dontSynchronize) |
| | | { |
| | | assert debugEnter(CLASS_NAME, "setDontSynchronize", |
| | | String.valueOf(dontSynchronize)); |
| | | |
| | | this.dontSynchronizeFlag = dontSynchronize; |
| | | } |
| | | |
| | | /** |
| | | * Retrieves the entry for the user that should be considered the |
| | |
| | | * operation should be appended. |
| | | */ |
| | | public abstract void toString(StringBuilder buffer); |
| | | |
| | | |
| | | /** |
| | | * Indicates whether this operation needs to be synchronized to |
| | | * other copies of the data. |
| | | * |
| | | * @return <CODE>true</CODE> if this operation don't need to be |
| | | * synchronized, or |
| | | * <CODE>false</CODE> if it needs to be synchronized. |
| | | */ |
| | | public boolean dontSynchronize() |
| | | { |
| | | assert debugEnter(CLASS_NAME, "dontSynchronize"); |
| | | |
| | | return dontSynchronizeFlag; |
| | | } |
| | | } |
| | | |