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

io.ebeaninternal.server.deploy.PartitionMeta Maven / Gradle / Ivy

There is a newer version: 15.10.0
Show newest version
package io.ebeaninternal.server.deploy;

import io.ebean.annotation.PartitionMode;

public class PartitionMeta {

  private final PartitionMode mode;

  private String property;

  public PartitionMeta(PartitionMode mode, String property) {
    this.mode = mode;
    this.property = property;
  }

  public PartitionMode getMode() {
    return mode;
  }

  public String getProperty() {
    return property;
  }

  public void setProperty(String dbColumn) {
    this.property = dbColumn;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy