nl.vpro.domain.api.suggest.update.SuggestUpdate Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of api-domain Show documentation
Show all versions of api-domain Show documentation
Contains the objects used by the Frontend API, like forms and result objects
/*
* Copyright (C) 2014 All rights reserved
* VPRO The Netherlands
*/
package nl.vpro.domain.api.suggest.update;
import lombok.Getter;
import lombok.Setter;
import java.util.List;
import javax.validation.constraints.NotNull;
import javax.validation.constraints.Size;
import com.fasterxml.jackson.annotation.JsonProperty;
/**
* @author Roelof Jan Koekoek
* @since 3.2x
*/
public class SuggestUpdate {
@JsonProperty
@NotNull
@Size(min = 1)
@Getter
private List input;
@JsonProperty
@Getter
@Setter
private String output;
public SuggestUpdate() {
}
public void setInput(@NotNull List<@NotNull String> input) {
this.input = input;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy