aboutsummaryrefslogtreecommitdiffstats
path: root/jdisc_core_test/test_bundles/app-g-act/src/main/java/com/yahoo/jdisc/bundle/g_act/MyService.java
blob: 2466e0a491be47d0af1a50e04a259c6ba9f7ae8d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.jdisc.bundle.g_act;

import com.yahoo.jdisc.service.AbstractServerProvider;
import com.yahoo.jdisc.service.CurrentContainer;

/**
 * @author Simon Thoresen Hult
 */
public class MyService extends AbstractServerProvider {

    public MyService(CurrentContainer container) {
        super(container);
    }

    @Override
    public void start() {

    }

    @Override
    public void close() {

    }
}