*
* @return the operation factory
*/
private IOperationFactory getOperationFactory (final String clientId)
{
IOperationFactory factory = null;
final BucketData bucket = this.clientBucketMap.get (clientId);
if (bucket != null) {
factory = bucket.opFactory;
}
return factory;