
pro.taskana.classification.rest.models.ClassificationDefinitionRepresentationModel Maven / Gradle / Ivy
The newest version!
package pro.taskana.classification.rest.models;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonUnwrapped;
import org.springframework.hateoas.RepresentationModel;
public class ClassificationDefinitionRepresentationModel
extends RepresentationModel {
@JsonIgnoreProperties("_links")
@JsonUnwrapped
private final ClassificationRepresentationModel classification;
@JsonCreator
public ClassificationDefinitionRepresentationModel(
ClassificationRepresentationModel classification) {
this.classification = classification;
}
public ClassificationRepresentationModel getClassification() {
return classification;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy