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 public TrustedApplication getTrustedApplication(String id);
10 public CurrentApplication getCurrentApplication();
11 }