Return-Path: Delivered-To: apmail-cxf-commits-archive@www.apache.org Received: (qmail 36137 invoked from network); 10 Jun 2009 14:59:44 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 10 Jun 2009 14:59:44 -0000 Received: (qmail 12375 invoked by uid 500); 10 Jun 2009 14:59:56 -0000 Delivered-To: apmail-cxf-commits-archive@cxf.apache.org Received: (qmail 12306 invoked by uid 500); 10 Jun 2009 14:59:56 -0000 Mailing-List: contact commits-help@cxf.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@cxf.apache.org Delivered-To: mailing list commits@cxf.apache.org Received: (qmail 12297 invoked by uid 99); 10 Jun 2009 14:59:56 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 10 Jun 2009 14:59:56 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 10 Jun 2009 14:59:54 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 2B78323888D4; Wed, 10 Jun 2009 14:59:34 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r783385 - /cxf/branches/2.0.x-fixes/rt/databinding/aegis/src/main/java/org/apache/cxf/aegis/type/mtom/DataHandlerType.java Date: Wed, 10 Jun 2009 14:59:34 -0000 To: commits@cxf.apache.org From: dkulp@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20090610145934.2B78323888D4@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: dkulp Date: Wed Jun 10 14:59:33 2009 New Revision: 783385 URL: http://svn.apache.org/viewvc?rev=783385&view=rev Log: Fix compile failure Modified: cxf/branches/2.0.x-fixes/rt/databinding/aegis/src/main/java/org/apache/cxf/aegis/type/mtom/DataHandlerType.java Modified: cxf/branches/2.0.x-fixes/rt/databinding/aegis/src/main/java/org/apache/cxf/aegis/type/mtom/DataHandlerType.java URL: http://svn.apache.org/viewvc/cxf/branches/2.0.x-fixes/rt/databinding/aegis/src/main/java/org/apache/cxf/aegis/type/mtom/DataHandlerType.java?rev=783385&r1=783384&r2=783385&view=diff ============================================================================== --- cxf/branches/2.0.x-fixes/rt/databinding/aegis/src/main/java/org/apache/cxf/aegis/type/mtom/DataHandlerType.java (original) +++ cxf/branches/2.0.x-fixes/rt/databinding/aegis/src/main/java/org/apache/cxf/aegis/type/mtom/DataHandlerType.java Wed Jun 10 14:59:33 2009 @@ -18,10 +18,17 @@ */ package org.apache.cxf.aegis.type.mtom; +import java.io.ByteArrayOutputStream; +import java.io.IOException; +import java.io.InputStream; +import java.io.UnsupportedEncodingException; + import javax.activation.DataHandler; import org.apache.cxf.aegis.Context; import org.apache.cxf.attachment.AttachmentImpl; +import org.apache.cxf.helpers.HttpHeaderHelper; +import org.apache.cxf.helpers.IOUtils; import org.apache.cxf.message.Attachment; public class DataHandlerType extends AbstractXOPType {