View Javadoc
1   package com.atlassian.plugin.spring.scanner.runtime.impl.testservices;
2   
3   import com.atlassian.plugin.spring.scanner.annotation.export.ExportAsService;
4   import org.springframework.stereotype.Component;
5   
6   @Component
7   @ExportAsService
8   public class PublicNonInterfaceService {
9       public void a() {
10      }
11  }