All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.ebeaninternal.server.dto.DtoReadSet Maven / Gradle / Ivy

There is a newer version: 15.8.0
Show newest version
package io.ebeaninternal.server.dto;

import io.ebean.core.type.DataReader;

import java.sql.SQLException;

/**
 * Read and set a property value.
 */
public interface DtoReadSet {

  /**
   * Read the value from the dataReader and set it to the bean.
   */
  void readSet(Object bean, DataReader dataReader) throws SQLException;

  /**
   * Return true if this maps to a read only property (no setter method).
   */
  boolean isReadOnly();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy