Return-Path: Delivered-To: apmail-harmony-dev-archive@www.apache.org Received: (qmail 32715 invoked from network); 24 Nov 2006 07:51:52 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 24 Nov 2006 07:51:52 -0000 Received: (qmail 8057 invoked by uid 500); 24 Nov 2006 07:52:00 -0000 Delivered-To: apmail-harmony-dev-archive@harmony.apache.org Received: (qmail 7577 invoked by uid 500); 24 Nov 2006 07:51:59 -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 7568 invoked by uid 99); 24 Nov 2006 07:51:59 -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:51:59 -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 mloenko@gmail.com designates 64.233.182.184 as permitted sender) Received: from [64.233.182.184] (HELO nf-out-0910.google.com) (64.233.182.184) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 23 Nov 2006 23:51:46 -0800 Received: by nf-out-0910.google.com with SMTP id a4so1207031nfc for ; Thu, 23 Nov 2006 23:51:24 -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=RR4VLdAb9sstt/9dEezjvHD+7MK7yhzC1Om44nPwSSbBK5x/TN+PjeNOwrur3NCA4ehnSMkFXFXG/LxXIsXaWCQtrrS2y1Zm8SKPmflN8Pr3Nl1gnrXf/BLKuFmayJTS3/PGrhiwh00ZKfIllHvBO9JDapRNyOT5aZQ8W+Ib23c= Received: by 10.78.142.14 with SMTP id p14mr10066279hud.1164354684294; Thu, 23 Nov 2006 23:51:24 -0800 (PST) Received: by 10.78.164.6 with HTTP; Thu, 23 Nov 2006 23:51:24 -0800 (PST) Message-ID: <906dd82e0611232351n16cb12b7u1d0e11a67bfd7cbc@mail.gmail.com> Date: Fri, 24 Nov 2006 13:51:24 +0600 From: "Mikhail Loenko" To: dev@harmony.apache.org Subject: Re: [classlib] Getting more real JAPI results In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <45655DE2.6050407@apache.org> <45657F64.7080800@gmail.com> <906dd82e0611232205y1e042c38nf5152560d38d0715@mail.gmail.com> <906dd82e0611232216n63c3dc54se61d607fe7c9fbc5@mail.gmail.com> <906dd82e0611232320g5a4d082bw2382c8e011c4f9c6@mail.gmail.com> X-Virus-Checked: Checked by ClamAV on apache.org I'm sorry but I completely don't understand what you mean 2006/11/24, Alexey Petrenko : > 2006/11/24, Mikhail Loenko : > > why not what? > > current behavior should be preserved because it corresponds to RI > Some methods there are not implemented too? > > > 2006/11/24, Alexey Petrenko : > > > 2006/11/24, Mikhail Loenko : > > > > x-net should also not be replaced with o.a.h.luni.util.NotImplementeException: > > > > it throws just what RI throws > > > Why not? > > > > > > > I'll take a look at sound > > > > > > > > Thanks, > > > > Mikhail > > > > > > > > 2006/11/24, Mikhail Loenko : > > > > > Shoud we change that in org.apache.harmony namespace? These don't > > > > > affect JAPI reports. > > > > > > > > > > > > > > > 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. > > > > > > > > > > > > > > > > > > > > >