Class BasicCassandraRowValueProvider

java.lang.Object
org.springframework.data.cassandra.core.convert.RowValueProvider
org.springframework.data.cassandra.core.convert.BasicCassandraRowValueProvider
All Implemented Interfaces:
CassandraValueProvider, org.springframework.data.mapping.model.PropertyValueProvider<CassandraPersistentProperty>

@Deprecated public class BasicCassandraRowValueProvider extends RowValueProvider
Deprecated.
since 3.0, use directly RowValueProvider.
CassandraValueProvider to read property values from a Row.
Author:
Alex Shvid, Matthew T. Adams, David Webb, Mark Paluch
  • Constructor Details

    • BasicCassandraRowValueProvider

      public BasicCassandraRowValueProvider(com.datastax.oss.driver.api.core.cql.Row source, com.datastax.oss.driver.api.core.type.codec.registry.CodecRegistry codecRegistry, org.springframework.data.mapping.model.SpELExpressionEvaluator evaluator)
      Deprecated.
      Create a new BasicCassandraRowValueProvider with the given Row, CodecRegistry and SpELExpressionEvaluator.
      Parameters:
      source - must not be null.
      codecRegistry - must not be null.
      evaluator - must not be null.
      Since:
      2.1
    • BasicCassandraRowValueProvider

      @Deprecated public BasicCassandraRowValueProvider(com.datastax.oss.driver.api.core.cql.Row source, org.springframework.data.mapping.model.DefaultSpELExpressionEvaluator evaluator)
      Create a new BasicCassandraRowValueProvider with the given Row and DefaultSpELExpressionEvaluator.
      Parameters:
      source - must not be null.
      evaluator - must not be null.