/**
  * Specify features to disable.
  *
  * @see com.fasterxml.jackson.databind.MapperFeature
  * @see com.fasterxml.jackson.databind.SerializationFeature
  * @see com.fasterxml.jackson.databind.DeserializationFeature
  * @see com.fasterxml.jackson.core.JsonParser.Feature
  * @see com.fasterxml.jackson.core.JsonGenerator.Feature
  */
 public void setFeaturesToDisable(Object... featuresToDisable) {
   jacksonObjectMapperFactoryBean.setFeaturesToDisable(featuresToDisable);
 }