@Override
 protected void removeAssociationValue(
     AssociationValue associationValue, String sagaType, String sagaIdentifier) {
   DBObject query =
       AssociationValueEntry.queryBySagaIdentifierAndAssociationKeyValue(
           sagaIdentifier, associationValue.getKey(), associationValue.getValue());
   mongoTemplate.associationsCollection().findAndRemove(query);
 }