1 package com.atlassian.plugin.spring.scanner.test.fields;
2
3 import com.atlassian.plugin.spring.scanner.annotation.imports.ComponentImport;
4 import com.atlassian.plugin.spring.scanner.test.NamedComponent;
5 import com.atlassian.plugin.spring.scanner.test.otherplugin.ServiceExportedFromAnotherPlugin;
6 import org.springframework.beans.factory.annotation.Autowired;
7 import org.springframework.stereotype.Component;
8
9 @Component
10 public class ComponentWithFields {
11 @ComponentImport
12 @Autowired
13 ServiceExportedFromAnotherPlugin externalService;
14
15 @Autowired
16 NamedComponent namedComponent;
17 }