summaryrefslogtreecommitdiffstats
path: root/controller-api/src/main/java/com/yahoo/vespa/hosted/controller/api/application/v4/model/configserverbindings/ReindexAction.java
blob: 36909415888a6b261e4d88cadcb72f280e0a6b9b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.hosted.controller.api.application.v4.model.configserverbindings;

import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonProperty;

import java.util.List;

/**
 * @author jonmv
 */
@JsonIgnoreProperties(ignoreUnknown = true)
public class ReindexAction {

    public final String name;
    public final String documentType;
    public final String clusterName;
    public final List<ServiceInfo> services;
    public final List<String> messages;

    @JsonCreator
    public ReindexAction(@JsonProperty("name") String name,
                         @JsonProperty("documentType") String documentType,
                         @JsonProperty("clusterName") String clusterName,
                         @JsonProperty("services") List<ServiceInfo> services,
                         @JsonProperty("messages") List<String> messages) {
        this.name = name;
        this.documentType = documentType;
        this.clusterName = clusterName;
        this.services = services;
        this.messages = messages;
    }

    @Override
    public String toString() {
        return "ReindexAction{" +
                "name='" + name + '\'' +
                ", documentType='" + documentType + '\'' +
                ", clusterName='" + clusterName + '\'' +
                ", services=" + services +
                ", messages=" + messages +
                '}';
    }

}