aboutsummaryrefslogtreecommitdiffstats
path: root/configserver/src/main/java/com/yahoo/vespa/config/server/http/v2/PrepareResult.java
blob: 7342ac9e319c731e367f4700949ec843843e8a49 (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
// Copyright Vespa.ai. 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.vespa.config.server.configchange.ConfigChangeActions;
import com.yahoo.vespa.config.server.deploy.DeployHandlerLogger;

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

    private final long sessionId;
    private final ConfigChangeActions configChangeActions;
    private final DeployHandlerLogger logger;

    public PrepareResult(long sessionId, ConfigChangeActions configChangeActions, DeployHandlerLogger logger) {
        this.sessionId = sessionId;
        this.configChangeActions = configChangeActions;
        this.logger = logger;
    }

    public long sessionId() {
        return sessionId;
    }

    public ConfigChangeActions configChangeActions() {
        return configChangeActions;
    }

    public DeployHandlerLogger deployLogger() {
        return logger;
    }

}