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

com.avaje.ebeaninternal.server.querydefn.NaturalKeyBindParam Maven / Gradle / Ivy

There is a newer version: 8.1.1
Show newest version
package com.avaje.ebeaninternal.server.querydefn;

public class NaturalKeyBindParam {

  private final String name;

  private final Object value;

  public NaturalKeyBindParam(String name, Object value) {
    this.name = name;
    this.value = value;
  }

  public String getName() {
    return name;
  }

  public Object getValue() {
    return value;
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy