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

pro.taskana.classification.rest.assembler.ClassificationDefinitionCollectionRepresentationModel Maven / Gradle / Ivy

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

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

public class ClassificationDefinitionCollectionRepresentationModel
    extends CollectionRepresentationModel {

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

  /** the embedded classification definitions. */
  @JsonProperty("classifications")
  @Override
  public Collection getContent() {
    return super.getContent();
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy