Return-Path: Delivered-To: apmail-harmony-dev-archive@www.apache.org Received: (qmail 28007 invoked from network); 24 Nov 2006 07:16:33 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 24 Nov 2006 07:16:33 -0000 Received: (qmail 79790 invoked by uid 500); 24 Nov 2006 07:16:40 -0000 Delivered-To: apmail-harmony-dev-archive@harmony.apache.org Received: (qmail 79592 invoked by uid 500); 24 Nov 2006 07:16:39 -0000 Mailing-List: contact dev-help@harmony.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@harmony.apache.org Delivered-To: mailing list dev@harmony.apache.org Received: (qmail 79582 invoked by uid 99); 24 Nov 2006 07:16:39 -0000 Received: from herse.apache.org (HELO herse.apache.org) (140.211.11.133) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 23 Nov 2006 23:16:39 -0800 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (herse.apache.org: domain of alexey.a.petrenko@gmail.com designates 64.233.182.190 as permitted sender) Received: from [64.233.182.190] (HELO nf-out-0910.google.com) (64.233.182.190) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 23 Nov 2006 23:16:27 -0800 Received: by nf-out-0910.google.com with SMTP id a4so1196809nfc for ; Thu, 23 Nov 2006 23:16:06 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=U4ukmT6gHq3Dfuae2f3I2ZZwT4/qgGBp4LD8JcEGPwiPXgmR7FNm2D5C59FcoOyworAYKMZdhtiQtcjAUqiXidKhYE91601PQOuQyuLyGM4GUgWKZQakGx3I7luv6jyRVl5tuJgR5Sf2KVIbOQpPnUWNJ47DOgFjkaJFKAIy6oM= Received: by 10.78.170.17 with SMTP id s17mr10026855hue.1164352565769; Thu, 23 Nov 2006 23:16:05 -0800 (PST) Received: by 10.78.107.10 with HTTP; Thu, 23 Nov 2006 23:16:05 -0800 (PST) Message-ID: Date: Fri, 24 Nov 2006 10:16:05 +0300 From: "Alexey Petrenko" To: dev@harmony.apache.org Subject: Re: [classlib] Getting more real JAPI results In-Reply-To: <906dd82e0611232205y1e042c38nf5152560d38d0715@mail.gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <45655DE2.6050407@apache.org> <45657F64.7080800@gmail.com> <906dd82e0611232205y1e042c38nf5152560d38d0715@mail.gmail.com> X-Virus-Checked: Checked by ClamAV on apache.org 2006/11/24, Mikhail Loenko : > Shoud we change that in org.apache.harmony namespace? These don't > affect JAPI reports. I do not see any reason for this. And did not change org.apache classes in awt module. SY, Alexey > org/apache/harmony/auth/internal/kerberos/v5/EncryptedData.java: > > IvParameterSpec initCipherState; > switch (etype) { > case DES_CBC_CRC: > offset = 12;// confounder(8)+CRC-32 checksum(4) > // copy of original key > initCipherState = new IvParameterSpec(key.getEncoded()); > break; > case DES_CBC_MD4: > case DES_CBC_MD5: > offset = 24;// confounder(8)+ MD4/5 checksum(16) > // all-zero > initCipherState = new IvParameterSpec(new byte[] { 0, > 0, 0, 0, 0, 0, 0, 0, }); > break; > default: > throw new RuntimeException();//FIXME not implemented yet > > Thanks, > Mikhail > > 2006/11/23, Tim Ellison : > > Stefano Mazzocchi wrote: > > > I propose that we change all those exception into > > > o.a.h.luni.util.NotImplementeException so that JAPI can pick them up and > > > show us real results and we do it sooner rather than later. > > > > Agreed. I don't like stubs (unless required for compiling other stuff), > > but I recognize that some people prefer to define all the stubs then go > > back and fill them in. > > > > I agree that we should mark them as throwing the runtime exception > > org.apache.harmony.luni.util.NotImplementedException > > > > Regards, > > Tim > > > > -- > > > > Tim Ellison (t.p.ellison@gmail.com) > > IBM Java technology centre, UK. > > >