DATACOUCH-386 Improve javadoc for setWriteResultChecking

This commit is contained in:
Subhashni Balakrishnan
2018-09-18 22:48:57 -07:00
parent 1b989d6f30
commit 5fbfd78220

View File

@@ -207,6 +207,13 @@ public class CouchbaseTemplate implements CouchbaseOperations, ApplicationEventP
}
}
/**
* Configures the WriteResultChecking to be used with the template. Setting null will reset
* the default of DEFAULT_WRITE_RESULT_CHECKING. This can be configured to capture couchbase
* specific exceptions like Temporary failure, Authentication failure..
*
* @param writeResultChecking the setting to use.
*/
public void setWriteResultChecking(WriteResultChecking writeResultChecking) {
this.writeResultChecking = writeResultChecking == null ? DEFAULT_WRITE_RESULT_CHECKING : writeResultChecking;
}