/**
* @see RepositoryService#checkout(SessionInfo, NodeId)
*/
public void checkout(SessionInfo sessionInfo, NodeId nodeId) throws UnsupportedRepositoryOperationException, LockException, RepositoryException {
String uri = getItemUri(nodeId, sessionInfo);
CheckoutMethod method = new CheckoutMethod(uri);
execute(method, sessionInfo);
}