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

nl.vpro.domain.api.suggest.update.SuggestUpdate Maven / Gradle / Ivy

Go to download

Contains the objects used by the Frontend API, like forms and result objects

There is a newer version: 8.3.3
Show newest version
/*
 * 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