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

pro.taskana.classification.rest.models.ClassificationCollectionRepresentationModel Maven / Gradle / Ivy

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

import com.fasterxml.jackson.annotation.JsonProperty;
import java.beans.ConstructorProperties;
import java.util.Collection;
import pro.taskana.common.rest.models.CollectionRepresentationModel;

public class ClassificationCollectionRepresentationModel
    extends CollectionRepresentationModel {

  @ConstructorProperties("classifications")
  public ClassificationCollectionRepresentationModel(
      Collection content) {
    super(content);
  }

  @Override
  @JsonProperty("classifications")
  public Collection getContent() {
    return super.getContent();
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy