aboutsummaryrefslogtreecommitdiffstats
path: root/controller-api/src/main/java/com/yahoo/vespa/hosted/controller/api/application/v4/model/ApplicationReference.java
blob: 8e5740eae6b05e0d16f7e84745147e5408d7c049 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Copyright Yahoo. 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;
}