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

import java.util.concurrent.Callable;

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

    @Override
    public Integer call() throws Exception {
        return 2;
    }
}