aboutsummaryrefslogtreecommitdiffstats
path: root/orchestrator/src/main/java/com/yahoo/vespa/orchestrator/resources/ApplicationServices.java
blob: d6794f5340f75a671dcd8e84c1326d31c5d839a1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.orchestrator.resources;

import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;

import java.util.List;

/**
 * @author hakonhall
 */
@JsonInclude(value = JsonInclude.Include.NON_NULL)
public class ApplicationServices {
    @JsonProperty("services")
    public List<ServiceResource> services;
}