Return-Path: Delivered-To: apmail-jackrabbit-dev-archive@www.apache.org Received: (qmail 93184 invoked from network); 15 Dec 2009 16:34:45 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 15 Dec 2009 16:34:45 -0000 Received: (qmail 62061 invoked by uid 500); 15 Dec 2009 16:34:44 -0000 Delivered-To: apmail-jackrabbit-dev-archive@jackrabbit.apache.org Received: (qmail 61842 invoked by uid 500); 15 Dec 2009 16:34:42 -0000 Mailing-List: contact dev-help@jackrabbit.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@jackrabbit.apache.org Delivered-To: mailing list dev@jackrabbit.apache.org Received: (qmail 61807 invoked by uid 99); 15 Dec 2009 16:34:42 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 15 Dec 2009 16:34:42 +0000 X-ASF-Spam-Status: No, hits=-10.5 required=5.0 tests=AWL,BAYES_00,RCVD_IN_DNSWL_HI X-Spam-Check-By: apache.org Received: from [140.211.11.140] (HELO brutus.apache.org) (140.211.11.140) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 15 Dec 2009 16:34:38 +0000 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id 35271234C4C1 for ; Tue, 15 Dec 2009 08:34:18 -0800 (PST) Message-ID: <437475544.1260894858216.JavaMail.jira@brutus> Date: Tue, 15 Dec 2009 16:34:18 +0000 (UTC) From: "Jukka Zitting (JIRA)" To: dev@jackrabbit.apache.org Subject: [jira] Commented: (JCR-2439) More utility methods in JcrUtils In-Reply-To: <1051146517.1260874998480.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 [ https://issues.apache.org/jira/browse/JCR-2439?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12790805#action_12790805 ] Jukka Zitting commented on JCR-2439: ------------------------------------ I've now added the following methods: String toString(Item item) Node getOrAddNode(Node parent, String name) Node getOrAddNode(Node parent, String name, String type) Node getOrAddFolder(Node parent, String name) Node putFile(Node parent, String name, String mime, InputStream data) Node putFile(Node parent, String name, String mime, Calendar date, InputStream data) The naming isn't as consistent as originally proposed, but I think it now better matches the conceptual difference between the putFile() operation that always writes and the getOrAdd methods that write only if the child node does not already exist. > More utility methods in JcrUtils > -------------------------------- > > Key: JCR-2439 > URL: https://issues.apache.org/jira/browse/JCR-2439 > Project: Jackrabbit Content Repository > Issue Type: Improvement > Components: jackrabbit-jcr-commons > Reporter: Jukka Zitting > Priority: Minor > > I'd like to add at least the following utility methods to JcrUtils: > For logging: > // Utility method to simplify log messages and debug prints: > // Node -> "name [type]" > // Property -> "@name = value(s)" > String toString(Item item) > For making sure that a node exists: > // Returns the identified child node. If the child does not already exist, > // it is added using the default node type from the parent. > Node setNode(Node parent, String name) > // Same as above, but ensures that isNodeType(type) is true for the > // returned node, using addNode(name, type) or setPrimaryType(type) > // if needed. > Node setNode(Node parent, String name, String type) > For adding (or setting, see above) nt:folder nodes: > // Adds a new nt:folder node with the given name > Node addFolder(Node parent, String name) > // Ensures that an nt:folder node with the given name exists > Node setFolder(Node parent, String name) > For adding (or setting) nt:file nodes: > // Adds a new nt:file/nt:resource structure > // If the mime type contains a charset parameter, then the jcr:encoding property is also set > Node addFile(Node parent, String name, String mime, InputStream data) > Node addFile(Node parent, String name, String mime, Calendar date, InputStream data) > // Ensures that an nt:file/nt:resource structure exists with the given data. > // Note that the type of a potential existing jcr:content node is not modified > Node setFile(Node parent, String name, String mime, InputStream data) > Node setFile(Node parent, String name, String mime, Calendar date, InputStream data) -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.