summaryrefslogtreecommitdiffstats
path: root/vespa-http-client/src/main/java/com/yahoo/vespa/http/client/core/EndpointResult.java
blob: 5aec46a8fc7cbb3969a6de8d9244679359de0ce4 (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
// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.http.client.core;

import com.yahoo.vespa.http.client.Result;

/**
 * Result from a single endpoint.
 * @author dybis
 */
public class EndpointResult {
    private final String operationId;
    private final Result.Detail detail;

    public EndpointResult(String operationId, Result.Detail detail) {
        this.operationId = operationId;
        this.detail = detail;
    }

    public String getOperationId() {
        return operationId;
    }

    public Result.Detail getDetail() {
        return detail;
    }
}