1 package com.atlassian.plugin.spring.scanner.test.otherplugin.impl;
2
3 import com.atlassian.plugin.spring.scanner.annotation.export.ExportAsService;
4 import com.atlassian.plugin.spring.scanner.test.otherplugin.DynamicallyImportedServiceFromAnotherPlugin;
5 import org.springframework.stereotype.Component;
6
7
8
9
10 @ExportAsService(DynamicallyImportedServiceFromAnotherPlugin.class)
11 @Component
12 @SuppressWarnings("unused")
13 public class DynamicallyImportedServiceFromAnotherPluginImpl implements DynamicallyImportedServiceFromAnotherPlugin {
14 }