Skip to content
Snippets Groups Projects
Commit 2f32d728 authored by User expired's avatar User expired
Browse files

openolat#205: implement the new missing getPluginName function of the HelpLinkSPI interface

parent 27c37461
No related branches found
No related tags found
No related merge requests found
...@@ -41,6 +41,8 @@ import org.springframework.stereotype.Service; ...@@ -41,6 +41,8 @@ import org.springframework.stereotype.Service;
@Service("uibkConfluenceLinkHelp") @Service("uibkConfluenceLinkHelp")
public class UibkConfluenceLinkSPI implements HelpLinkSPI { public class UibkConfluenceLinkSPI implements HelpLinkSPI {
private static final String PLUGIN_NAME = "uibkmanual";
public UibkConfluenceLinkSPI() { public UibkConfluenceLinkSPI() {
super(); super();
myConfluenceSpi = new MyConfluenceLinkSPI(); myConfluenceSpi = new MyConfluenceLinkSPI();
...@@ -89,4 +91,9 @@ public class UibkConfluenceLinkSPI implements HelpLinkSPI { ...@@ -89,4 +91,9 @@ public class UibkConfluenceLinkSPI implements HelpLinkSPI {
public void setMainDocumentationLink(String mainDocumentationLink) { public void setMainDocumentationLink(String mainDocumentationLink) {
this.mainDocumentationLink = mainDocumentationLink; this.mainDocumentationLink = mainDocumentationLink;
} }
@Override
public String getPluginName() {
return PLUGIN_NAME;
}
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment