當前位置: 首頁>>代碼示例>>Java>>正文


Java Node.getProperties方法代碼示例

本文整理匯總了Java中javax.jcr.Node.getProperties方法的典型用法代碼示例。如果您正苦於以下問題:Java Node.getProperties方法的具體用法?Java Node.getProperties怎麽用?Java Node.getProperties使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在javax.jcr.Node的用法示例。


在下文中一共展示了Node.getProperties方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: copyNode

import javax.jcr.Node; //導入方法依賴的package包/類
/**
 * Copies nodes.
 *
 * @param node              Node to copy
 * @param destinationParent Destination parent node
 * @throws RepositoryException if problem with jcr repository occurred
 */
public void copyNode(Node node, Node destinationParent) throws RepositoryException {
  LOG.debug("Copying node '{}' into '{}'", node.getPath(), destinationParent.getPath());
  Node newNode = destinationParent.addNode(node.getName(), node.getPrimaryNodeType().getName());
  PropertyIterator it = node.getProperties();
  while (it.hasNext()) {
    Property property = it.nextProperty();
    if (!property.getDefinition().isProtected()) {
      newNode
          .setProperty(property.getName(), property.getValue().getString(), property.getType());
    }
  }
  NodeIterator nodeIterator = node.getNodes();
  while (nodeIterator.hasNext()) {
    copyNode(nodeIterator.nextNode(), newNode);
  }
}
 
開發者ID:Cognifide,項目名稱:bobcat,代碼行數:24,代碼來源:JcrHelper.java

示例2: getPropertiesWithDefaultValuesReturnsNonEmptyProperties

import javax.jcr.Node; //導入方法依賴的package包/類
@Test
public void getPropertiesWithDefaultValuesReturnsNonEmptyProperties() throws Exception {
	Node testObj = aNode("/content");
	
	PropertyIterator actual = testObj.getProperties();
	
	assertTrue(actual.hasNext());
}
 
開發者ID:quatico-solutions,項目名稱:aem-testing,代碼行數:9,代碼來源:NodeTestDriver.java

示例3: getPropertiesStringArrayThrowsException

import javax.jcr.Node; //導入方法依賴的package包/類
@Test(expected = UnsupportedOperationException.class)
public void getPropertiesStringArrayThrowsException() throws Exception {
	Node testObj = aNode("/content");
	
	testObj.getProperties(new String[0]);
}
 
開發者ID:quatico-solutions,項目名稱:aem-testing,代碼行數:7,代碼來源:MockNodeTest.java


注:本文中的javax.jcr.Node.getProperties方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。