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

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

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

/**
 * A column in the resultSet that we want to map to a bean property.
 */
public class DtoColumn {

  private final String label;

  public DtoColumn(String label) {
    this.label = label;
  }

  public String getLabel() {
    return label;
  }

  @Override
  public String toString() {
    return label;
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy