summaryrefslogtreecommitdiffstats
path: root/jdisc_core_test/test_bundles/cert-l1/src/main/java/com/yahoo/jdisc/bundle/l/CertificateL.java
blob: fb8fbbd669cdf2989b05261f877af4d53cdbf91a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Copyright 2017 Yahoo Holdings. 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 1;
    }
}