aboutsummaryrefslogtreecommitdiffstats
path: root/controller-api/src/main/java/com/yahoo/vespa/hosted/controller/api/identifiers/RevisionId.java
blob: 7b9dd18fde67cc38b0cad1743f12d84c704465a6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// 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.identifiers;

/**
 * An unique identifier of an application package.
 * 
 * @author smorgrav
 */
public class RevisionId extends Identifier {

    public RevisionId(String id) {
        super(id);
    }

}