aboutsummaryrefslogtreecommitdiffstats
path: root/controller-api/src/main/java/com/yahoo/vespa/hosted/controller/api/application/v4/model/ApplicationReference.java
blob: 2001dbf7cd9bf5b790a8b38041537b903c0c7bc6 (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.hosted.controller.api.application.v4.model;

import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.yahoo.vespa.hosted.controller.api.identifiers.ApplicationId;

import java.net.URI;

/**
 * @author Stian Kristoffersen
 */
@JsonIgnoreProperties(ignoreUnknown = true)
public class ApplicationReference {
    public ApplicationId application;
    public URI url;
}