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

pro.taskana.common.rest.models.VersionRepresentationModel Maven / Gradle / Ivy

There is a newer version: 8.2.0
Show newest version
package pro.taskana.common.rest.models;

import org.springframework.hateoas.RepresentationModel;

/** EntityModel class for version information. */
public class VersionRepresentationModel extends RepresentationModel {

  private String version;

  public String getVersion() {
    return version;
  }

  public void setVersion(String version) {
    this.version = version;
  }

  @Override
  public String toString() {
    return "VersionResource [" + "version= " + this.version + "]";
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy