summaryrefslogtreecommitdiffstats
path: root/controller-api/src/main/java/com/yahoo/vespa/hosted/controller/api/integration/container/ContainerRegistry.java
blob: 78757ad995a1bef8c43c1b75327dc90fac8a8ea2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// 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.integration.container;


import java.util.List;

/**
 * A registry of container images.
 *
 * @author mpolden
 */
public interface ContainerRegistry {

    /** Delete all given images */
    void deleteAll(List<ContainerImage> images);

    /** Returns a list of all container images in this system */
    List<ContainerImage> list();

}