aboutsummaryrefslogtreecommitdiffstats
path: root/container-di/src/main/java/com/yahoo/container/di/ComponentDeconstructor.java
blob: 09f72c9d86dbb026c16be7b2c1a94c9b8a8ebde8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.container.di;

import java.util.Collection;

/**
 * @author gjoranv
 * @author Tony Vaagenes
 */
public interface ComponentDeconstructor {
    void deconstruct(Collection<Object> components);
}