*
* @return this
*/
public Builder setRDBConnection(String dsjdbcurl, String dsusername, String dspassword, String bsjdbcurl,
String bsusername, String bspassword) {
this.documentStore = new RDBDocumentStore(dsjdbcurl, dsusername, dspassword);
this.blobStore = new RDBBlobStore(bsjdbcurl, bsusername, bspassword);
return this;
}