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

org.hotrod.runtime.interfaces.UpdateByExampleDao Maven / Gradle / Ivy

package org.hotrod.runtime.interfaces;

public class UpdateByExampleDao {

  private D filter;
  private D values;

  public UpdateByExampleDao(final D filter, final D values) {
    this.filter = filter;
    this.values = values;
  }

  public D getFilter() {
    return filter;
  }

  public D getValues() {
    return values;
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy