summaryrefslogtreecommitdiffstats
path: root/controller-api/src/main/java/com/yahoo/vespa/hosted/controller/api/integration/configserver/Logs.java
blob: ec85fbea35e4d221cf3d69fe57d927e06e61fca4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Copyright 2018 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.hosted.controller.api.integration.configserver;

import java.util.Map;

public class Logs {

    private final Map<String, String> logs;

    public Logs(Map<String, String> logs) {
        this.logs = logs;
    }

    public Map<String, String> logs() {
        return this.logs;
    }
}