View Javadoc
1   package com.atlassian.plugin.spring.scanner.test.primary;
2   
3   import org.springframework.stereotype.Component;
4   
5   /**
6    * This is an implementation for the {@link ComponentInterfaceWithAPrimaryImplementation} interface, but it is not the
7    * primary implementation.
8    */
9   @Component
10  class BaseImplementation implements ComponentInterfaceWithAPrimaryImplementation {
11  }