1   package com.atlassian.security.auth.trustedapps;
2   
3   
4   /**
5    * A container for trusted application representations. Also contains a reference to this application.
6    */
7   public interface TrustedApplicationsManager
8   {
9   	TrustedApplication getTrustedApplication(String id);
10  	CurrentApplication getCurrentApplication();
11  }