You are here

getCheckedOutDocuments

getCheckedOutDocuments() - Returns a list (or paged list) of documents the authenticated user has checked out.

getCheckedOutDocuments

public List<Document> getCheckedOutDocuments() - Returns a list of documents the authenticated user has checked out.

Parameters

None.

Returns

Returns a list of documents the authenticated user has checked out.

Exception

Throws an SkyVaultServiceException if the operation cannot be carried out.

Example


    VersionService vs = session.getServiceRegistry()
    		.getVersionService();		
    
    List<Document> docs = vs.getCheckedOutDocuments();    

        
      
Note: This method was added in version 1.4.

getCheckedOutDocuments

public PagingResult<Document> getCheckedOutDocuments(ListingContext listingContext) - Returns a paged list of documents the authenticated user has checked out.

Parameters

ListingContext listingContent
The listing context controlling the paged results.

Returns

Returns a paged list of documents the authenticated user has checked out.

Exception

Throws an SkyVaultServiceException if the operation cannot be carried out.

Example


    VersionService vs = session.getServiceRegistry()
    		.getVersionService();		
    
    PagingResult<Document> docs = vs.getCheckedOutDocuments(listingContext);    

        
      
Note: This method was added in version 1.4.