Return-Path: Delivered-To: apmail-tomcat-dev-archive@www.apache.org Received: (qmail 92392 invoked from network); 1 Sep 2006 08:52:39 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 1 Sep 2006 08:52:39 -0000 Received: (qmail 71296 invoked by uid 500); 1 Sep 2006 08:52:34 -0000 Delivered-To: apmail-tomcat-dev-archive@tomcat.apache.org Received: (qmail 71184 invoked by uid 500); 1 Sep 2006 08:52:33 -0000 Mailing-List: contact dev-help@tomcat.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: "Tomcat Developers List" Delivered-To: mailing list dev@tomcat.apache.org Received: (qmail 71167 invoked by uid 99); 1 Sep 2006 08:52:33 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 01 Sep 2006 01:52:33 -0700 X-ASF-Spam-Status: No, hits=0.1 required=10.0 tests=HTML_MESSAGE,HTML_TAG_EXIST_TBODY,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: domain of didier.donsez@imag.fr designates 129.88.30.1 as permitted sender) Received: from [129.88.30.1] (HELO imag.imag.fr) (129.88.30.1) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 01 Sep 2006 01:52:32 -0700 Received: from [127.0.0.1] (donsez-vpn.imag.fr [129.88.58.37]) by imag.imag.fr (8.13.6/8.13.6) with ESMTP id k818q62E009161; Fri, 1 Sep 2006 10:52:08 +0200 (CEST) Message-ID: <44F7F4BD.4050209@imag.fr> Date: Fri, 01 Sep 2006 10:52:13 +0200 From: Didier Donsez User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.12) Gecko/20050915 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Remy Maucherat CC: Tomcat Developers List Subject: Re: Improvement of Catalina ant task Content-Type: multipart/mixed; boundary="------------050805090100050405050203" X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-1.6 (imag.imag.fr [129.88.30.1]); Fri, 01 Sep 2006 10:52:08 +0200 (CEST) X-IMAG-MailScanner-Information: Please contact IMAG DMI for more information X-IMAG-MailScanner: Found to be clean X-MailScanner-From: didier.donsez@imag.fr X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N --------------050805090100050405050203 Content-Type: multipart/alternative; boundary="------------060100010506060008010309" --------------060100010506060008010309 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 8bit Remy The class Attribute was attached to my first mail ! I attach it again ! Didier Subject: Re: Improvement of Catalina ant task From: Remy Maucherat Date: Thu, 31 Aug 2006 13:49:37 +0200 To: Tomcat Developers List Didier Donsez wrote: > Peter > > I'm not skill with SVN diff ;-( > Modified files are in attachment and modified and new code lines are > bracketed between // ADDED comments > Please, Could you do the diff for me ? > I attach the full project (next mail) to ease the testing ! The patch actually has a problem anyway: it's missing a class. R�my --------------060100010506060008010309 Content-Type: text/html; charset=us-ascii Content-Transfer-Encoding: 7bit Remy
The class Attribute was attached to my first mail !
I attach it again !

Didier

Subject:
Re: Improvement of Catalina ant task <jmx:set>
From:
Remy Maucherat <remm@apache.org>
Date:
Thu, 31 Aug 2006 13:49:37 +0200
To:
Tomcat Developers List <dev@tomcat.apache.org>

Didier Donsez wrote:
Peter

I'm not skill with SVN diff ;-(
Modified files are in attachment and modified and new code lines are bracketed between // ADDED comments
Please, Could you do the diff  for me ?
I attach the full project (next mail) to ease the testing !

The patch actually has a problem anyway: it's missing a class.

Rémy
--------------060100010506060008010309-- --------------050805090100050405050203 Content-Type: text/plain; name="Attribute.java" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="Attribute.java" /* * Copyright 2002,2004 The Apache Software Foundation. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.apache.catalina.ant.jmx; /** * * @author Didier Donsez */ public class Attribute { String name; String type; String value; public void setName( String name) { this.name=name; } public void setType( String type) { this.type=type; } public void setValue( String value ) { this.value=value; } public void addText( String text ) { this.value=text; } public String getName() { return name; } public String getValue() { return value; } public String getType() { return type; } } --------------050805090100050405050203 Content-Type: text/plain; charset=us-ascii --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org For additional commands, e-mail: dev-help@tomcat.apache.org --------------050805090100050405050203--