aboutsummaryrefslogtreecommitdiffstats
path: root/jdisc_core_test/test_bundles/app-g-act/src/main/java/com/yahoo/jdisc/bundle/g_act/MyService.java
diff options
context:
space:
mode:
authorgjoranv <gv@oath.com>2018-09-25 11:53:40 +0200
committergjoranv <gv@oath.com>2018-09-26 16:46:30 +0200
commit66f479c351c593e63f36039c4d85c7f02a8f5b03 (patch)
treed92f750b04a772b7d7bd858e3096bd273da617d3 /jdisc_core_test/test_bundles/app-g-act/src/main/java/com/yahoo/jdisc/bundle/g_act/MyService.java
parenta246879bed135a7c5861eab5ad0da85e16e539d7 (diff)
Create separate packages for activator test bundles.
- When running tests in IntelliJ, classes from the two bundles are confused.
Diffstat (limited to 'jdisc_core_test/test_bundles/app-g-act/src/main/java/com/yahoo/jdisc/bundle/g_act/MyService.java')
-rw-r--r--jdisc_core_test/test_bundles/app-g-act/src/main/java/com/yahoo/jdisc/bundle/g_act/MyService.java25
1 files changed, 25 insertions, 0 deletions
diff --git a/jdisc_core_test/test_bundles/app-g-act/src/main/java/com/yahoo/jdisc/bundle/g_act/MyService.java b/jdisc_core_test/test_bundles/app-g-act/src/main/java/com/yahoo/jdisc/bundle/g_act/MyService.java
new file mode 100644
index 00000000000..518f7304100
--- /dev/null
+++ b/jdisc_core_test/test_bundles/app-g-act/src/main/java/com/yahoo/jdisc/bundle/g_act/MyService.java
@@ -0,0 +1,25 @@
+// 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.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() {
+
+ }
+}