Uses of Class
org.eclipse.higgins.icard.userprofile.UserProfileException

Packages that use UserProfileException
org.eclipse.higgins.icard.userprofile   
 

Uses of UserProfileException in org.eclipse.higgins.icard.userprofile
 

Subclasses of UserProfileException in org.eclipse.higgins.icard.userprofile
 class UserProfileAuthenticationException
           
 

Methods in org.eclipse.higgins.icard.userprofile that throw UserProfileException
 UserProfile IUserProfileService.getUserProfile(CallbackHandler handler)
           
 UserProfile IUserProfileService.addUserProfile(CallbackHandler handler, UserProfile userProfile)
           
 UserProfile IUserProfileService.modifyUserProfile(CallbackHandler handler, UserProfile userProfile)
           
 void IUserProfileService.deleteUserProfile(CallbackHandler handler)
           
 String IUserProfileService.resetPassword(CallbackHandler handler)
           
 boolean IUserProfileService.userIdentifierExists(String userIdentifier)
           
 String IUserProfileService.resolveUserIdentifier(String privateSelectorINumber)
          Resolves user private Selector I-Number to user Identifier
 List IUserProfileService.getCategories(CallbackHandler handler)
           
 Category IUserProfileService.addCategory(CallbackHandler handler, Category category)
           
 Category IUserProfileService.modifyCategory(CallbackHandler handler, Category category)
           
 void IUserProfileService.deleteCategory(CallbackHandler handler, String categoryId)
           
 CardInformation IUserProfileService.setCardCredential(CallbackHandler handler, CUID cuid, CardCredential cardCredential)
          Sets credential information for the given card.
 CardInformation IUserProfileService.clearCardCredential(CallbackHandler handler, CUID cuid)
          Clears credential information for the given card.
 CardInformation IUserProfileService.getCardInformation(CallbackHandler handler, CUID cuid)
          Returns the whole information about the given card
 ICardUsageManager IUserProfileService.getCardUsageManager(CallbackHandler handler)
          Returns class that manages all Card usage and URI relations information
 PolicyVersion IUserProfileService.getRPPolicyVersion(CallbackHandler handler, URI url)
           
 void IUserProfileService.setRPPolicyVersion(CallbackHandler handler, PolicyVersion policyVersion)
           
 void IUserProfileService.setNewPassword(CallbackHandler handler, String newPassword)
          Sets the new password allowing authentication both by new and old passwords until the successful deleteOldPassword() call.
 void IUserProfileService.setNewPasswordByPasswordIsapMd5(String userId, byte[] passwordIsapMd5, String newPassword)
          Sets the new password allowing authentication both by new and old passwords until the successful deleteOldPassword() call.
 void IUserProfileService.deleteOldPassword(CallbackHandler handler)
          Deletes the old password and change it to the new one.
 CardUsage ICardUsageManager.addCardHistory(CUID cuid, URI uri)
          Adds info about card usage event
 List ICardUsageManager.getCardHistory(CUID cuid)
          Returns the card usage history
 List ICardUsageManager.getCardHistory(CUID cuid, int startFrom, int size, String orderBy, boolean desc)
          Returns the card usage history in a paging manner
 int ICardUsageManager.getHistoryTotalSize(CUID cuid)
          Returns the total size of history for paging output
 void ICardUsageManager.clearCardHistory(CUID cuid)
          Deletes all the usage events of the given card on all URIs unless it is checked as "Use Always".
 void ICardUsageManager.clearCardHistory(CUID cuid, URI site)
          Deletes one usage event of the given card on the given site unless it is checked as "Use Always".
 CardUsage ICardUsageManager.setUsedAlways(CUID cuid, URI uri)
          Remembers this card for this site for subsequent zero-click logins
 CardUsage ICardUsageManager.deleteUsedAlways(CUID cuid, URI uri)
          Deletes the "Use Always" relation between this card and this site
 void ICardUsageManager.setOptionalClaims(CUID cuid, URI site, Set optionalClaims)
          Remembers the list of optional claim types of the card that are need to be used during subsequent zero-click logins to the given site
 Set ICardUsageManager.getOptionalClaims(CUID cuid, URI site)
          Returns list of the remembered optional claim types of the given card which will be used on the given site when zero-click login occurs
 List ICardUsageManager.getUsedCards(URI uri)
          Returns the List of CardUsage objects of all the cards, which ever been logged in to this site
 List ICardUsageManager.getUsedAlwaysURLs(CUID cuid)
          Returns the List of CardUsage objects with URIs for which the given card is remembered
 CUID ICardUsageManager.getUsedAlwaysCard(URI uri)
          Returns the card remebered for the given site
 void ICardUsageManager.clearUsedAlwaysURLs(CUID cuid)
          Deletes state "Use Always" on all URIs for the given card
 List ICardUsageManager.getCardUsageSummary(CUID cuid)
          Returns card relations to URI with last used dates and state remembered it on this site or not
 List ICardUsageManager.getCardUsageSummary(CUID cuid, int startFrom, int size, String orderBy, boolean desc)
          Returns card relations to URI with last used dates and state remembered it on this site or not
 int ICardUsageManager.getSummaryTotalSize(CUID cuid)
           
 Map ICardUsageManager.getClaimValuesMRU()
          Return all the remembered claim values by types in a map where key is claim type and value is Set of claim values
 Set ICardUsageManager.getClaimValuesMRU(String claimType)
          Return remembered claim values for the specified claim type
 void ICardUsageManager.setClaimValuesMRU(String claimType, Set claimValues)
          Set the values for the specified claim type
 void ICardUsageManager.close()
          Finishes all the work done, releases contexts, resourses etc.