View Javadoc

1   package com.atlassian.user;
2   
3   /**
4    * An entry representing an external user or group.
5    */
6   
7   public interface ExternalEntity extends Entity
8   {
9       long getId();
10  
11      String getType();
12  }