View Javadoc
1   package com.atlassian.plugin.spring.scanner.test.primary;
2   
3   import org.springframework.context.annotation.Primary;
4   import org.springframework.stereotype.Component;
5   
6   /**
7    * This is the primary implementation for the {@link ComponentInterfaceWithAPrimaryImplementation}. It is expected to be
8    * autowired when {@link ComponentInterfaceWithAPrimaryImplementation} is requested
9    */
10  @Primary
11  @Component
12  class PrimaryImplementation implements ComponentInterfaceWithAPrimaryImplementation {
13  }