本文整理匯總了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);
}
}
示例2: getPropertiesWithDefaultValuesReturnsNonEmptyProperties
import javax.jcr.Node; //導入方法依賴的package包/類
@Test
public void getPropertiesWithDefaultValuesReturnsNonEmptyProperties() throws Exception {
Node testObj = aNode("/content");
PropertyIterator actual = testObj.getProperties();
assertTrue(actual.hasNext());
}
示例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]);
}