summaryrefslogtreecommitdiffstats
path: root/container-jersey2/src/main/java/com/yahoo/container/servlet/jersey/util/ResourceConfigUtil.java
blob: e1246d0a125d43b6de767339b616b444deea0f69 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Copyright 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.container.servlet.jersey.util;

import org.glassfish.jersey.server.ResourceConfig;

/**
 * @author tonytv
 */
public class ResourceConfigUtil {
    /**
     * Solves ambiguous reference to overloaded definition, see
     * http://stackoverflow.com/questions/3313929/how-do-i-disambiguate-in-scala-between-methods-with-vararg-and-without
     */
    public static void registerComponent(ResourceConfig config, Object component) {
        config.register(component);
    }
}