Uses of Class
org.eclipse.higgins.icard.CUID

Packages that use CUID
org.eclipse.higgins.icard   
org.eclipse.higgins.icard.io   
org.eclipse.higgins.icard.userprofile   
 

Uses of CUID in org.eclipse.higgins.icard
 

Methods in org.eclipse.higgins.icard that return CUID
 CUID ICard.getCUID()
          Gets the unique identifier of the i-card in the i-card registry.
 

Methods in org.eclipse.higgins.icard with parameters of type CUID
 ICard ICardProvider.getICardByCUID(CallbackHandler authHandler, CUID cuid)
          Gets user's ICard whose identity could be requested using spesified callback handler which have the spesified unique identifier.
 ICard ICardProvider.getICardByCUID(CallbackHandler authHandler, CUID cuid, ICredential userCredential)
          Gets fully loaded user's ICard whose identity could be requested using spesified callback handler which have the spesified unique identifier.
 IElement[] ICardProvider.exportICards(CallbackHandler authHandler, IElementFormat format, CUID[] cards)
          Performs export of cards into array of IElements.
 

Uses of CUID in org.eclipse.higgins.icard.io
 

Methods in org.eclipse.higgins.icard.io that return CUID
 CUID IICardElement.getCUID()
           
 

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

Methods in org.eclipse.higgins.icard.userprofile that return CUID
 CUID CardUsage.getCuid()
           
 CUID ICardUsageManager.getUsedAlwaysCard(URI uri)
          Returns the card remebered for the given site
 CUID CardInformation.getCuid()
           
 

Methods in org.eclipse.higgins.icard.userprofile with parameters of type CUID
 void CardUsage.setCuid(CUID cuid)
           
 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
 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".
 CardUsage ICardUsageManager.setUsedAlways(CUID cuid, URI uri)
          Remembers this card for this site
 CardUsage ICardUsageManager.deleteUsedAlways(CUID cuid, URI uri)
          Deletes the "Use Always" relation between this card and this site
 List ICardUsageManager.getUsedAlwaysURLs(CUID cuid)
          Returns the List of CardUsage objects with URIs for which the given card is remembered
 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)
           
 void CardInformation.setCuid(CUID cuid)
           
 

Constructors in org.eclipse.higgins.icard.userprofile with parameters of type CUID
CardUsage(CUID cuid, URI site, Date date, Boolean useAlways)