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   @ExportAsService
7   @Component
8   public class PublicService implements Service {
9       @Override
10      public void a() {
11      }
12  }