How to import BoardAdminService (greenhopper)

You can Autowire just a few beans from Greenhopper.
To make something more you have to load beans through OSGI ApplicationContext dedicated to GreenHopper plugin:

Please refer to my comment here: No bean named 'rapidViewServiceImpl' - #2 by RomaBubyakin
You can use it like:

BoardAdminService boardAdminService = getGreenHopperBean(BoardAdminService .class);
boardAdminService....

However, BoardAdminService requires RapidView entries, so you may consider getting RapidViewService.

It also might be interesting to you to see all beans in the ghAppContext so I’m attaching the list of them
GH_beans_full_list.txt (19.5 KB)