com.atlassian.jira.security.auth.trustedapps
Class DefaultTrustedApplicationManager

java.lang.Object
  extended by com.atlassian.jira.security.auth.trustedapps.DefaultTrustedApplicationManager
All Implemented Interfaces:
TrustedApplicationManager

public class DefaultTrustedApplicationManager
extends java.lang.Object
implements TrustedApplicationManager


Constructor Summary
DefaultTrustedApplicationManager(TrustedApplicationStore store)
           
 
Method Summary
 boolean delete(com.opensymphony.user.User user, long id)
          Deletes the TrustedApplicationInfo with the specified ID.
 TrustedApplicationInfo get(long id)
          Find a TrustedApplicationInfo given an ID.
 TrustedApplicationInfo get(java.lang.String applicationId)
          Find a TrustedApplicationInfo given an application ID.
 java.util.Set<TrustedApplicationInfo> getAll()
          Find all TrustedApplicationInfo objects in the system.
 TrustedApplicationInfo store(com.opensymphony.user.User user, TrustedApplicationInfo info)
          Persist a TrustedApplicationInfo
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

DefaultTrustedApplicationManager

public DefaultTrustedApplicationManager(TrustedApplicationStore store)
Method Detail

getAll

public java.util.Set<TrustedApplicationInfo> getAll()
Description copied from interface: TrustedApplicationManager
Find all TrustedApplicationInfo objects in the system.

Specified by:
getAll in interface TrustedApplicationManager
Returns:
a Collection of all TrustedApplicationInfo. Empty (not null) if none exist.

get

public TrustedApplicationInfo get(java.lang.String applicationId)
Description copied from interface: TrustedApplicationManager
Find a TrustedApplicationInfo given an application ID.

Specified by:
get in interface TrustedApplicationManager
Parameters:
applicationId - the id of the application
Returns:
the TrustedApplicationInfo if found, null otherwise.

get

public TrustedApplicationInfo get(long id)
Description copied from interface: TrustedApplicationManager
Find a TrustedApplicationInfo given an ID.

Specified by:
get in interface TrustedApplicationManager
Parameters:
id - the id of the application
Returns:
the TrustedApplicationInfo if found, null otherwise.

delete

public boolean delete(com.opensymphony.user.User user,
                      long id)
Description copied from interface: TrustedApplicationManager
Deletes the TrustedApplicationInfo with the specified ID.

Specified by:
delete in interface TrustedApplicationManager
Parameters:
user - the user who is performing the delete
id - the id of the application to delete

store

public TrustedApplicationInfo store(com.opensymphony.user.User user,
                                    TrustedApplicationInfo info)
Description copied from interface: TrustedApplicationManager
Persist a TrustedApplicationInfo

Specified by:
store in interface TrustedApplicationManager
Parameters:
user - the user who is performing the store
info - the thing to save (create or update). Must not be null.
Returns:
the updated or created business object.


Copyright © 2002-2010 Atlassian. All Rights Reserved.