aboutsummaryrefslogtreecommitdiffstats
path: root/jdisc_core_test/test_bundles/cert-ml-dup/src/main/java/com/yahoo/jdisc/bundle/m/CertificateM.java
blob: 24147cce0e7c72cfdc612fd31639f2cf434356d4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.jdisc.bundle.m;

import java.util.concurrent.Callable;

/**
 * @author Simon Thoresen Hult
 */
public class CertificateM implements Callable<Integer> {

    @Override
    @SuppressWarnings({ "unchecked" })
    public Integer call() throws Exception {
        Class<?> certClass = Class.forName("com.yahoo.jdisc.bundle.l.CertificateL");
        Callable<Integer> cert = (Callable<Integer>)certClass.getDeclaredConstructor().newInstance();
        return cert.call();
    }
}