View Javadoc
1   package com.atlassian.refapp.plugins.navlinks.spi.impl;
2   
3   import com.atlassian.plugins.navlink.spi.Project;
4   import com.atlassian.plugins.navlink.spi.ProjectManager;
5   import com.atlassian.plugins.navlink.spi.ProjectNotFoundException;
6   
7   /**
8    * Dummy implementation, since the refapp doesn't allow maintenance of Custom Content Links
9    */
10  public class NavlinksProjectManager implements ProjectManager {
11      @Override
12      public Project getProjectByKey(String s) throws ProjectNotFoundException {
13          throw new ProjectNotFoundException(s);
14      }
15  }