当前位置: 首页>>代码示例>>Java>>正文


Java Session.nodeExists方法代码示例

本文整理汇总了Java中javax.jcr.Session.nodeExists方法的典型用法代码示例。如果您正苦于以下问题:Java Session.nodeExists方法的具体用法?Java Session.nodeExists怎么用?Java Session.nodeExists使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在javax.jcr.Session的用法示例。


在下文中一共展示了Session.nodeExists方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: nodeExist

import javax.jcr.Session; //导入方法依赖的package包/类
/**
 * Checks if specified node exist.
 *
 * @param session  Jcr session.
 * @param nodePath Absolute path to node.
 * @return True if node exist.
 */
public static ExpectedCondition<Boolean> nodeExist(final Session session, final String nodePath) {
  LOG.debug("Checking if node '{}' exists", nodePath);
  return input -> {
    Boolean result = null;
    try {
      session.refresh(true);
      result = session.nodeExists(nodePath);
    } catch (RepositoryException e) {
      LOG.error(JCR_ERROR, e);
    }
    return result;
  };
}
 
开发者ID:Cognifide,项目名称:bobcat,代码行数:21,代码来源:JcrExpectedConditions.java

示例2: deleteNode

import javax.jcr.Session; //导入方法依赖的package包/类
/**
 * Deletes node under specified path.
 *
 * @param nodePath Absolute path to node.
 * @param session  jcr session
 * @throws RepositoryException if problem with jcr repository occurred
 */
public void deleteNode(String nodePath, Session session) throws RepositoryException {
  LOG.debug("Deleting node '{}'", nodePath);
  if (session.nodeExists(nodePath)) {
    session.removeItem(nodePath);
    session.save();
  }
}
 
开发者ID:Cognifide,项目名称:bobcat,代码行数:15,代码来源:JcrHelper.java

示例3: pathExists

import javax.jcr.Session; //导入方法依赖的package包/类
private boolean pathExists(String path){
    boolean nodeExists = false;
    try {
        Session session = newSession();
        nodeExists = session.nodeExists(path);
        session.logout();
    } catch (RepositoryException e) {
        log.warn("Error occurred while accessing repository", e);
    }
    return nodeExists;
}
 
开发者ID:bdelacretaz,项目名称:sling-adaptto-2016,代码行数:12,代码来源:RenditionJobConsumer.java


注:本文中的javax.jcr.Session.nodeExists方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。