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

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

The newest version!
package pro.taskana.common.rest.models;

import java.util.Collection;
import org.springframework.hateoas.RepresentationModel;

public class CollectionRepresentationModel>
    extends RepresentationModel> {

  private final Collection content;

  public CollectionRepresentationModel(Collection content) {
    this.content = content;
  }

  public Collection getContent() {
    return content;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy