1 package com.atlassian.refapp.sal.message;
2
3 import com.atlassian.plugin.spring.scanner.annotation.export.ExportAsService;
4 import com.atlassian.sal.api.message.HelpPath;
5 import com.atlassian.sal.api.message.HelpPathResolver;
6
7 import javax.inject.Named;
8
9 @ExportAsService
10 @Named("helpPathResolver")
11 public class RefImplHelpPathResolver implements HelpPathResolver {
12 /**
13 * RefApp doesn't have any specific help available for any plugins.
14 */
15 public HelpPath getHelpPath(String key) {
16 return null;
17 }
18 }