Return-Path: Delivered-To: apmail-incubator-abdera-dev-archive@locus.apache.org Received: (qmail 24997 invoked from network); 12 Jun 2006 18:04:48 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 12 Jun 2006 18:04:48 -0000 Received: (qmail 57783 invoked by uid 500); 12 Jun 2006 18:04:48 -0000 Delivered-To: apmail-incubator-abdera-dev-archive@incubator.apache.org Received: (qmail 57760 invoked by uid 500); 12 Jun 2006 18:04:47 -0000 Mailing-List: contact abdera-dev-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: abdera-dev@incubator.apache.org Delivered-To: mailing list abdera-dev@incubator.apache.org Received: (qmail 57751 invoked by uid 99); 12 Jun 2006 18:04:47 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 12 Jun 2006 11:04:47 -0700 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: domain of jasnell@gmail.com designates 64.233.184.225 as permitted sender) Received: from [64.233.184.225] (HELO wr-out-0506.google.com) (64.233.184.225) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 12 Jun 2006 11:04:46 -0700 Received: by wr-out-0506.google.com with SMTP id i31so619124wra for ; Mon, 12 Jun 2006 11:04:25 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:user-agent:mime-version:to:subject:references:in-reply-to:content-type:content-transfer-encoding; b=EDRFTJVnMhd3vtu5UwA5C8KPu39Fw81R0aEjtlb10sQQ3oNfTeU2/aLmdqOzBuZir5PwuagChiUgRi78Fp8HI2zxFFfp3AOzWYOA+Ih7fhuLHQVj0hnawp0HH5XUjJ72HAuKWdPE31cKZo1AsgdwtFxSVISRhMdjqk6mlfY/gcM= Received: by 10.54.103.13 with SMTP id a13mr2408888wrc; Mon, 12 Jun 2006 11:04:25 -0700 (PDT) Received: from ?192.168.1.104? ( [67.181.218.96]) by mx.gmail.com with ESMTP id 14sm9078008wrl.2006.06.12.11.04.24; Mon, 12 Jun 2006 11:04:24 -0700 (PDT) Message-ID: <448DACA6.1020100@gmail.com> Date: Mon, 12 Jun 2006 11:04:22 -0700 From: James M Snell User-Agent: Thunderbird 1.5.0.4 (X11/20060516) MIME-Version: 1.0 To: abdera-dev@incubator.apache.org Subject: Re: Delete/Remove in API References: <448DABBF.3070204@torrez.us> In-Reply-To: <448DABBF.3070204@torrez.us> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Every element has a discard() method. To remove a link, grab a reference to it and call discard(). e.g. entry.getLink('foo').discard(); Elias Torres wrote: > As I write a server implementation, I needed to remove links from an > existing entry. Can I do this today and I'm just missing a method? Or is > this in the TODO? > > -Elias >