summaryrefslogtreecommitdiffstats
path: root/configserver/src/main/java/com/yahoo/vespa/config/server/http/v2/PrepareResult.java
blob: 99320df11df9325f6b20e1845d042fb0715d9a18 (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
// Copyright 2018 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.config.server.http.v2;

import com.yahoo.slime.Slime;
import com.yahoo.vespa.config.server.configchange.ConfigChangeActions;

/**
 * Encapsulates the result from preparing an application
 *
 * @author hmusum
 */
public class PrepareResult {

    private final long sessionId;
    private final ConfigChangeActions configChangeActions;
    private final Slime deployLog;

    public PrepareResult(long sessionId, ConfigChangeActions configChangeActions, Slime deployLog) {
        this.sessionId = sessionId;
        this.configChangeActions = configChangeActions;
        this.deployLog = deployLog;
    }

    public long sessionId() {
        return sessionId;
    }

    public ConfigChangeActions configChangeActions() {
        return configChangeActions;
    }

    public Slime deployLog() {
        return deployLog;
    }
}