summaryrefslogtreecommitdiffstats
path: root/vespajlib/src/main/java/com/yahoo/collections/ResourceFactory.java
blob: 44d99f78cfedfaeb2780c7b57a764535951b9682 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
// Copyright 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.collections;

/**
 * @author <a href="mailto:balder@yahoo-inc.com">Henning Baldersheim</a>
 * @since 5.2
 */
public abstract class ResourceFactory<T> {

    public abstract T create();
}