View Javadoc
1   package com.atlassian.refapp.auth.internal;
2   
3   import com.atlassian.user.repository.RepositoryIdentifier;
4   
5   public class AuthPluginRepositoryIdentifier implements RepositoryIdentifier {
6       public String getKey() {
7           return "com.atlassian.security.auth.plugin";
8       }
9   
10      public String getName() {
11          return "Refimpl Auth Plugin";
12      }
13  }