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.ServiceTwoExportedFromAnotherPlugin;
5 import org.springframework.stereotype.Component;
6
7
8
9
10 @ExportAsService(ServiceTwoExportedFromAnotherPlugin.class)
11 @Component
12 @SuppressWarnings("unused")
13 public class ServiceTwoExportedFromAnotherPluginImpl implements ServiceTwoExportedFromAnotherPlugin {
14 }