Return-Path: Delivered-To: apmail-incubator-cxf-commits-archive@locus.apache.org Received: (qmail 40773 invoked from network); 26 Jul 2007 17:58:46 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 26 Jul 2007 17:58:44 -0000 Received: (qmail 72741 invoked by uid 500); 26 Jul 2007 17:58:43 -0000 Delivered-To: apmail-incubator-cxf-commits-archive@incubator.apache.org Received: (qmail 72553 invoked by uid 500); 26 Jul 2007 17:58:41 -0000 Mailing-List: contact cxf-commits-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: cxf-dev@incubator.apache.org Delivered-To: mailing list cxf-commits@incubator.apache.org Received: (qmail 72289 invoked by uid 99); 26 Jul 2007 17:58:40 -0000 Received: from herse.apache.org (HELO herse.apache.org) (140.211.11.133) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 26 Jul 2007 10:58:40 -0700 X-ASF-Spam-Status: No, hits=-99.5 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [140.211.11.3] (HELO eris.apache.org) (140.211.11.3) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 26 Jul 2007 10:58:33 -0700 Received: by eris.apache.org (Postfix, from userid 65534) id D10361A981D; Thu, 26 Jul 2007 10:58:12 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r559909 [2/7] - in /incubator/cxf/trunk: benchmark/performance/soap_http_doc_lit/bin/ common/common/src/main/java/org/apache/cxf/configuration/spring/ common/common/src/main/java/org/apache/cxf/helpers/ rt/databinding/aegis/src/test/java/or... Date: Thu, 26 Jul 2007 17:57:59 -0000 To: cxf-commits@incubator.apache.org From: dkulp@apache.org X-Mailer: svnmailer-1.1.0 Message-Id: <20070726175812.D10361A981D@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Modified: incubator/cxf/trunk/tools/javato/core/src/main/java/org/apache/cxf/tools/java2wsdl/generator/wsdl11/DateTypeCustomGenerator.java URL: http://svn.apache.org/viewvc/incubator/cxf/trunk/tools/javato/core/src/main/java/org/apache/cxf/tools/java2wsdl/generator/wsdl11/DateTypeCustomGenerator.java?view=diff&rev=559909&r1=559908&r2=559909 ============================================================================== --- incubator/cxf/trunk/tools/javato/core/src/main/java/org/apache/cxf/tools/java2wsdl/generator/wsdl11/DateTypeCustomGenerator.java (original) +++ incubator/cxf/trunk/tools/javato/core/src/main/java/org/apache/cxf/tools/java2wsdl/generator/wsdl11/DateTypeCustomGenerator.java Thu Jul 26 10:57:46 2007 @@ -1,137 +1,137 @@ -/** - * Licensed to the Apache Software Foundation (ASF) under one - * or more contributor license agreements. See the NOTICE file - * distributed with this work for additional information - * regarding copyright ownership. The ASF licenses this file - * to you 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.cxf.tools.java2wsdl.generator.wsdl11; - -import java.io.File; -import java.lang.reflect.Method; -import java.util.ArrayList; -import java.util.Calendar; -import java.util.Collection; -import java.util.Date; -import java.util.List; - -import org.apache.cxf.service.model.OperationInfo; -import org.apache.cxf.service.model.SchemaInfo; -import org.apache.cxf.tools.common.VelocityGenerator; -import org.apache.cxf.tools.java2wsdl.generator.AbstractGenerator; -import org.apache.cxf.tools.util.FileWriterUtil; - -public final class DateTypeCustomGenerator extends AbstractGenerator { - - private static final String TEMPLATE_BASE = "org/apache/cxf/tools/java2wsdl/generator/wsdl11/"; - private static final String TEMPLATE_EXT = TEMPLATE_BASE + "date_type_cust.vm"; - private static final String TEMPLATE_EMB = TEMPLATE_BASE + "date_type_cust_embed.vm"; - - private static final String DATE_ADAPTER = "org.apache.cxf.tools.common.DataTypeAdapter"; - private static final String CALENDAR_ADAPTER = "javax.xml.bind.DatatypeConverter"; - - private String wsdlName; - private List schemaFiles = new ArrayList(); - - public void addSchemaFiles(final Collection s) { - this.schemaFiles.addAll(s); - } - - public void setWSDLName(final String ws) { - this.wsdlName = ws; - } - - private String getTemplate() { - if (allowImports()) { - return TEMPLATE_EXT; - } - return TEMPLATE_EMB; - } - - public List getSchemaNamespaces() { - List ns = new ArrayList(); - for (SchemaInfo schema : getServiceModel().getSchemas()) { - ns.add(schema.getNamespaceURI()); - } - return ns; - } - - public File generate(File outputdir) { - Class dateType = getDateType(); - File xjb = getJAXBCustFile(outputdir); - - if (dateType != null) { - VelocityGenerator generator = new VelocityGenerator(); - - generator.setCommonAttributes(); - generator.setAttributes("parseMethod", getAdapterMethod(dateType, ".parseDateTime")); - generator.setAttributes("printMethod", getAdapterMethod(dateType, ".printDateTime")); - generator.setAttributes("datetype", dateType.getName()); - - if (allowImports()) { - if (schemaFiles.size() == 0) { - return null; - } - generator.setAttributes("schemaFiles", schemaFiles); - } else { - generator.setAttributes("wsdlName", wsdlName); - List ns = getSchemaNamespaces(); - if (ns.size() == 0) { - return null; - } - generator.setAttributes("targetNamespaces", ns); - } - - try { - generator.doWrite(getTemplate(), FileWriterUtil.getWriter(xjb)); - } catch (Exception e) { - e.printStackTrace(); - } - - generator.clearAttributes(); - } - return xjb; - } - - protected File getJAXBCustFile(File outputdir) { - return new File(outputdir, wsdlName + ".xjb"); - } - - protected String getAdapterMethod(final Class clz, final String methodName) { - if (clz == Date.class) { - return DATE_ADAPTER + methodName; - } - return CALENDAR_ADAPTER + methodName; - } - - protected Class getDateType() { - if (getServiceModel() == null) { - return null; - } - - for (OperationInfo op : getServiceModel().getInterface().getOperations()) { - Method m = (Method) op.getProperty("operation.method"); - for (Class clz : m.getParameterTypes()) { - if (clz == Date.class || clz == Calendar.class) { - return clz; - } - } - if (m.getReturnType() == Date.class - || m.getReturnType() == Calendar.class) { - return m.getReturnType(); - } - } - return null; - } -} +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you 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.cxf.tools.java2wsdl.generator.wsdl11; + +import java.io.File; +import java.lang.reflect.Method; +import java.util.ArrayList; +import java.util.Calendar; +import java.util.Collection; +import java.util.Date; +import java.util.List; + +import org.apache.cxf.service.model.OperationInfo; +import org.apache.cxf.service.model.SchemaInfo; +import org.apache.cxf.tools.common.VelocityGenerator; +import org.apache.cxf.tools.java2wsdl.generator.AbstractGenerator; +import org.apache.cxf.tools.util.FileWriterUtil; + +public final class DateTypeCustomGenerator extends AbstractGenerator { + + private static final String TEMPLATE_BASE = "org/apache/cxf/tools/java2wsdl/generator/wsdl11/"; + private static final String TEMPLATE_EXT = TEMPLATE_BASE + "date_type_cust.vm"; + private static final String TEMPLATE_EMB = TEMPLATE_BASE + "date_type_cust_embed.vm"; + + private static final String DATE_ADAPTER = "org.apache.cxf.tools.common.DataTypeAdapter"; + private static final String CALENDAR_ADAPTER = "javax.xml.bind.DatatypeConverter"; + + private String wsdlName; + private List schemaFiles = new ArrayList(); + + public void addSchemaFiles(final Collection s) { + this.schemaFiles.addAll(s); + } + + public void setWSDLName(final String ws) { + this.wsdlName = ws; + } + + private String getTemplate() { + if (allowImports()) { + return TEMPLATE_EXT; + } + return TEMPLATE_EMB; + } + + public List getSchemaNamespaces() { + List ns = new ArrayList(); + for (SchemaInfo schema : getServiceModel().getSchemas()) { + ns.add(schema.getNamespaceURI()); + } + return ns; + } + + public File generate(File outputdir) { + Class dateType = getDateType(); + File xjb = getJAXBCustFile(outputdir); + + if (dateType != null) { + VelocityGenerator generator = new VelocityGenerator(); + + generator.setCommonAttributes(); + generator.setAttributes("parseMethod", getAdapterMethod(dateType, ".parseDateTime")); + generator.setAttributes("printMethod", getAdapterMethod(dateType, ".printDateTime")); + generator.setAttributes("datetype", dateType.getName()); + + if (allowImports()) { + if (schemaFiles.size() == 0) { + return null; + } + generator.setAttributes("schemaFiles", schemaFiles); + } else { + generator.setAttributes("wsdlName", wsdlName); + List ns = getSchemaNamespaces(); + if (ns.size() == 0) { + return null; + } + generator.setAttributes("targetNamespaces", ns); + } + + try { + generator.doWrite(getTemplate(), FileWriterUtil.getWriter(xjb)); + } catch (Exception e) { + e.printStackTrace(); + } + + generator.clearAttributes(); + } + return xjb; + } + + protected File getJAXBCustFile(File outputdir) { + return new File(outputdir, wsdlName + ".xjb"); + } + + protected String getAdapterMethod(final Class clz, final String methodName) { + if (clz == Date.class) { + return DATE_ADAPTER + methodName; + } + return CALENDAR_ADAPTER + methodName; + } + + protected Class getDateType() { + if (getServiceModel() == null) { + return null; + } + + for (OperationInfo op : getServiceModel().getInterface().getOperations()) { + Method m = (Method) op.getProperty("operation.method"); + for (Class clz : m.getParameterTypes()) { + if (clz == Date.class || clz == Calendar.class) { + return clz; + } + } + if (m.getReturnType() == Date.class + || m.getReturnType() == Calendar.class) { + return m.getReturnType(); + } + } + return null; + } +} Propchange: incubator/cxf/trunk/tools/javato/core/src/main/java/org/apache/cxf/tools/java2wsdl/generator/wsdl11/DateTypeCustomGenerator.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: incubator/cxf/trunk/tools/javato/core/src/main/java/org/apache/cxf/tools/java2wsdl/generator/wsdl11/DateTypeCustomGenerator.java ------------------------------------------------------------------------------ svn:keywords = Rev Date Modified: incubator/cxf/trunk/tools/javato/test/src/test/java/org/apache/cxf/tools/fortest/cxf774/ListTest.java URL: http://svn.apache.org/viewvc/incubator/cxf/trunk/tools/javato/test/src/test/java/org/apache/cxf/tools/fortest/cxf774/ListTest.java?view=diff&rev=559909&r1=559908&r2=559909 ============================================================================== --- incubator/cxf/trunk/tools/javato/test/src/test/java/org/apache/cxf/tools/fortest/cxf774/ListTest.java (original) +++ incubator/cxf/trunk/tools/javato/test/src/test/java/org/apache/cxf/tools/fortest/cxf774/ListTest.java Thu Jul 26 10:57:46 2007 @@ -1,42 +1,42 @@ -/** - * Licensed to the Apache Software Foundation (ASF) under one - * or more contributor license agreements. See the NOTICE file - * distributed with this work for additional information - * regarding copyright ownership. The ASF licenses this file - * to you 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.cxf.tools.fortest.cxf774; - -import java.util.List; - -import javax.jws.WebMethod; -import javax.jws.WebService; - -import javax.xml.ws.RequestWrapper; -import javax.xml.ws.ResponseWrapper; - -@WebService(name = "ListTest", targetNamespace = "http://cxf.apache/") -public interface ListTest { - - @WebMethod(operationName = "sayHi", exclude = false) - @ResponseWrapper(className = "apache.cxf.SayHiResponse", - localName = "sayHiResponse", - targetNamespace = "http://cxf.apache/") - @RequestWrapper(className = "apache.cxf.SayHi", - localName = "sayHi", - targetNamespace = "http://cxf.apache/") - List sayHi(String hi); - -} +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you 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.cxf.tools.fortest.cxf774; + +import java.util.List; + +import javax.jws.WebMethod; +import javax.jws.WebService; + +import javax.xml.ws.RequestWrapper; +import javax.xml.ws.ResponseWrapper; + +@WebService(name = "ListTest", targetNamespace = "http://cxf.apache/") +public interface ListTest { + + @WebMethod(operationName = "sayHi", exclude = false) + @ResponseWrapper(className = "apache.cxf.SayHiResponse", + localName = "sayHiResponse", + targetNamespace = "http://cxf.apache/") + @RequestWrapper(className = "apache.cxf.SayHi", + localName = "sayHi", + targetNamespace = "http://cxf.apache/") + List sayHi(String hi); + +} Propchange: incubator/cxf/trunk/tools/javato/test/src/test/java/org/apache/cxf/tools/fortest/cxf774/ListTest.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: incubator/cxf/trunk/tools/javato/test/src/test/java/org/apache/cxf/tools/fortest/cxf774/ListTest.java ------------------------------------------------------------------------------ svn:keywords = Rev Date Modified: incubator/cxf/trunk/tools/javato/test/src/test/java/org/apache/cxf/tools/fortest/cxf774/ListTestImpl.java URL: http://svn.apache.org/viewvc/incubator/cxf/trunk/tools/javato/test/src/test/java/org/apache/cxf/tools/fortest/cxf774/ListTestImpl.java?view=diff&rev=559909&r1=559908&r2=559909 ============================================================================== --- incubator/cxf/trunk/tools/javato/test/src/test/java/org/apache/cxf/tools/fortest/cxf774/ListTestImpl.java (original) +++ incubator/cxf/trunk/tools/javato/test/src/test/java/org/apache/cxf/tools/fortest/cxf774/ListTestImpl.java Thu Jul 26 10:57:46 2007 @@ -1,31 +1,31 @@ -/** - * Licensed to the Apache Software Foundation (ASF) under one - * or more contributor license agreements. See the NOTICE file - * distributed with this work for additional information - * regarding copyright ownership. The ASF licenses this file - * to you 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.cxf.tools.fortest.cxf774; -import java.util.List; -import javax.jws.WebService; -@WebService(serviceName = "SOAPService", - portName = "SoapPort", - endpointInterface = "org.apache.cxf.tools.fortest.cxf774.ListTest", - targetNamespace = "http://cxf.apache/") -public class ListTestImpl implements ListTest { - public List sayHi(String hi) { - return null; - } - -} +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you 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.cxf.tools.fortest.cxf774; +import java.util.List; +import javax.jws.WebService; +@WebService(serviceName = "SOAPService", + portName = "SoapPort", + endpointInterface = "org.apache.cxf.tools.fortest.cxf774.ListTest", + targetNamespace = "http://cxf.apache/") +public class ListTestImpl implements ListTest { + public List sayHi(String hi) { + return null; + } + +} Propchange: incubator/cxf/trunk/tools/javato/test/src/test/java/org/apache/cxf/tools/fortest/cxf774/ListTestImpl.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: incubator/cxf/trunk/tools/javato/test/src/test/java/org/apache/cxf/tools/fortest/cxf774/ListTestImpl.java ------------------------------------------------------------------------------ svn:keywords = Rev Date Modified: incubator/cxf/trunk/tools/javato/test/src/test/java/org/apache/cxf/tools/fortest/date/EchoCalendar.java URL: http://svn.apache.org/viewvc/incubator/cxf/trunk/tools/javato/test/src/test/java/org/apache/cxf/tools/fortest/date/EchoCalendar.java?view=diff&rev=559909&r1=559908&r2=559909 ============================================================================== --- incubator/cxf/trunk/tools/javato/test/src/test/java/org/apache/cxf/tools/fortest/date/EchoCalendar.java (original) +++ incubator/cxf/trunk/tools/javato/test/src/test/java/org/apache/cxf/tools/fortest/date/EchoCalendar.java Thu Jul 26 10:57:46 2007 @@ -1,30 +1,30 @@ -/** - * Licensed to the Apache Software Foundation (ASF) under one - * or more contributor license agreements. See the NOTICE file - * distributed with this work for additional information - * regarding copyright ownership. The ASF licenses this file - * to you 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.cxf.tools.fortest.date; - -import java.util.Calendar; -import javax.jws.WebService; - -@WebService -public class EchoCalendar { - public Calendar echoCalendar(Calendar c) { - return Calendar.getInstance(); - } -} +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you 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.cxf.tools.fortest.date; + +import java.util.Calendar; +import javax.jws.WebService; + +@WebService +public class EchoCalendar { + public Calendar echoCalendar(Calendar c) { + return Calendar.getInstance(); + } +} Propchange: incubator/cxf/trunk/tools/javato/test/src/test/java/org/apache/cxf/tools/fortest/date/EchoCalendar.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: incubator/cxf/trunk/tools/javato/test/src/test/java/org/apache/cxf/tools/fortest/date/EchoCalendar.java ------------------------------------------------------------------------------ svn:keywords = Rev Date Modified: incubator/cxf/trunk/tools/javato/test/src/test/java/org/apache/cxf/tools/fortest/date/EchoDate.java URL: http://svn.apache.org/viewvc/incubator/cxf/trunk/tools/javato/test/src/test/java/org/apache/cxf/tools/fortest/date/EchoDate.java?view=diff&rev=559909&r1=559908&r2=559909 ============================================================================== --- incubator/cxf/trunk/tools/javato/test/src/test/java/org/apache/cxf/tools/fortest/date/EchoDate.java (original) +++ incubator/cxf/trunk/tools/javato/test/src/test/java/org/apache/cxf/tools/fortest/date/EchoDate.java Thu Jul 26 10:57:46 2007 @@ -1,31 +1,31 @@ -/** - * Licensed to the Apache Software Foundation (ASF) under one - * or more contributor license agreements. See the NOTICE file - * distributed with this work for additional information - * regarding copyright ownership. The ASF licenses this file - * to you 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.cxf.tools.fortest.date; - -import java.util.Date; -import javax.jws.WebService; - -@WebService -public class EchoDate { - public Date echoDate(Date d) { - return new Date(); - } -} - +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you 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.cxf.tools.fortest.date; + +import java.util.Date; +import javax.jws.WebService; + +@WebService +public class EchoDate { + public Date echoDate(Date d) { + return new Date(); + } +} + Propchange: incubator/cxf/trunk/tools/javato/test/src/test/java/org/apache/cxf/tools/fortest/date/EchoDate.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: incubator/cxf/trunk/tools/javato/test/src/test/java/org/apache/cxf/tools/fortest/date/EchoDate.java ------------------------------------------------------------------------------ svn:keywords = Rev Date Modified: incubator/cxf/trunk/tools/javato/test/src/test/java/org/apache/cxf/tools/java2wsdl/generator/wsdl11/DateTypeCustomGeneratorTest.java URL: http://svn.apache.org/viewvc/incubator/cxf/trunk/tools/javato/test/src/test/java/org/apache/cxf/tools/java2wsdl/generator/wsdl11/DateTypeCustomGeneratorTest.java?view=diff&rev=559909&r1=559908&r2=559909 ============================================================================== --- incubator/cxf/trunk/tools/javato/test/src/test/java/org/apache/cxf/tools/java2wsdl/generator/wsdl11/DateTypeCustomGeneratorTest.java (original) +++ incubator/cxf/trunk/tools/javato/test/src/test/java/org/apache/cxf/tools/java2wsdl/generator/wsdl11/DateTypeCustomGeneratorTest.java Thu Jul 26 10:57:46 2007 @@ -1,112 +1,112 @@ -/** - * Licensed to the Apache Software Foundation (ASF) under one - * or more contributor license agreements. See the NOTICE file - * distributed with this work for additional information - * regarding copyright ownership. The ASF licenses this file - * to you 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.cxf.tools.java2wsdl.generator.wsdl11; - -import java.io.File; -import java.util.Arrays; -import java.util.Calendar; -import java.util.Date; - -import org.apache.cxf.service.model.ServiceInfo; -import org.apache.cxf.tools.common.ProcessorTestBase; -import org.apache.cxf.tools.common.ToolConstants; -import org.apache.cxf.tools.fortest.date.EchoCalendar; -import org.apache.cxf.tools.fortest.date.EchoDate; -import org.apache.cxf.tools.java2wsdl.processor.JavaToProcessor; -import org.junit.After; -import org.junit.Before; -import org.junit.Test; - -public class DateTypeCustomGeneratorTest extends ProcessorTestBase { - DateTypeCustomGenerator gen = new DateTypeCustomGenerator(); - JavaToProcessor processor = new JavaToProcessor(); - - @Before - public void setUp() throws Exception { - super.setUp(); - processor.setEnvironment(env); - } - - @After - public void tearDown() { - //super.tearDown(); - } - - @Test - public void testGetJAXBCustFile() { - gen.setWSDLName("demo"); - assertTrue(gen.getJAXBCustFile(new File(".")).toString().endsWith("demo.xjb")); - } - - private ServiceInfo getServiceInfo(Class clz) { - env.put(ToolConstants.CFG_CLASSNAME, clz.getName()); - return processor.getServiceBuilder().createService(); - } - - @Test - public void getGetDateType() { - assertNull(gen.getDateType()); - gen.setServiceModel(getServiceInfo(org.apache.cxf.tools.fortest.jaxws.rpc.GreeterFault.class)); - assertNull(gen.getDateType()); - - gen.setServiceModel(getServiceInfo(EchoDate.class)); - assertEquals(Date.class, gen.getDateType()); - - gen.setServiceModel(getServiceInfo(EchoCalendar.class)); - assertEquals(Calendar.class, gen.getDateType()); - } - - @Test - public void testGenerateEmbedStyle() { - gen.setWSDLName("date_embed"); - gen.setServiceModel(getServiceInfo(EchoDate.class)); - assertEquals(Date.class, gen.getDateType()); - - String expectedFile = getClass().getResource("expected/date_embed.xml").getFile(); - assertFileEquals(new File(expectedFile), gen.generate(output)); - - gen.setWSDLName("calendar_embed"); - gen.setServiceModel(getServiceInfo(EchoCalendar.class)); - assertEquals(Calendar.class, gen.getDateType()); - - expectedFile = getClass().getResource("expected/calendar_embed.xml").getFile(); - assertFileEquals(new File(expectedFile), gen.generate(output)); - } - - @Test - public void testGenerateExternalStyle() { - gen.setAllowImports(true); - gen.addSchemaFiles(Arrays.asList(new String[]{"hello_schema1.xsd", "hello_schema2.xsd"})); - - gen.setWSDLName("date_external"); - gen.setServiceModel(getServiceInfo(EchoDate.class)); - assertEquals(Date.class, gen.getDateType()); - - String expectedFile = getClass().getResource("expected/date.xjb").getFile(); - assertFileEquals(new File(expectedFile), gen.generate(output)); - - gen.setWSDLName("calendar_external"); - gen.setServiceModel(getServiceInfo(EchoCalendar.class)); - assertEquals(Calendar.class, gen.getDateType()); - - expectedFile = getClass().getResource("expected/calendar.xjb").getFile(); - assertFileEquals(new File(expectedFile), gen.generate(output)); - } +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you 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.cxf.tools.java2wsdl.generator.wsdl11; + +import java.io.File; +import java.util.Arrays; +import java.util.Calendar; +import java.util.Date; + +import org.apache.cxf.service.model.ServiceInfo; +import org.apache.cxf.tools.common.ProcessorTestBase; +import org.apache.cxf.tools.common.ToolConstants; +import org.apache.cxf.tools.fortest.date.EchoCalendar; +import org.apache.cxf.tools.fortest.date.EchoDate; +import org.apache.cxf.tools.java2wsdl.processor.JavaToProcessor; +import org.junit.After; +import org.junit.Before; +import org.junit.Test; + +public class DateTypeCustomGeneratorTest extends ProcessorTestBase { + DateTypeCustomGenerator gen = new DateTypeCustomGenerator(); + JavaToProcessor processor = new JavaToProcessor(); + + @Before + public void setUp() throws Exception { + super.setUp(); + processor.setEnvironment(env); + } + + @After + public void tearDown() { + //super.tearDown(); + } + + @Test + public void testGetJAXBCustFile() { + gen.setWSDLName("demo"); + assertTrue(gen.getJAXBCustFile(new File(".")).toString().endsWith("demo.xjb")); + } + + private ServiceInfo getServiceInfo(Class clz) { + env.put(ToolConstants.CFG_CLASSNAME, clz.getName()); + return processor.getServiceBuilder().createService(); + } + + @Test + public void getGetDateType() { + assertNull(gen.getDateType()); + gen.setServiceModel(getServiceInfo(org.apache.cxf.tools.fortest.jaxws.rpc.GreeterFault.class)); + assertNull(gen.getDateType()); + + gen.setServiceModel(getServiceInfo(EchoDate.class)); + assertEquals(Date.class, gen.getDateType()); + + gen.setServiceModel(getServiceInfo(EchoCalendar.class)); + assertEquals(Calendar.class, gen.getDateType()); + } + + @Test + public void testGenerateEmbedStyle() { + gen.setWSDLName("date_embed"); + gen.setServiceModel(getServiceInfo(EchoDate.class)); + assertEquals(Date.class, gen.getDateType()); + + String expectedFile = getClass().getResource("expected/date_embed.xml").getFile(); + assertFileEquals(new File(expectedFile), gen.generate(output)); + + gen.setWSDLName("calendar_embed"); + gen.setServiceModel(getServiceInfo(EchoCalendar.class)); + assertEquals(Calendar.class, gen.getDateType()); + + expectedFile = getClass().getResource("expected/calendar_embed.xml").getFile(); + assertFileEquals(new File(expectedFile), gen.generate(output)); + } + + @Test + public void testGenerateExternalStyle() { + gen.setAllowImports(true); + gen.addSchemaFiles(Arrays.asList(new String[]{"hello_schema1.xsd", "hello_schema2.xsd"})); + + gen.setWSDLName("date_external"); + gen.setServiceModel(getServiceInfo(EchoDate.class)); + assertEquals(Date.class, gen.getDateType()); + + String expectedFile = getClass().getResource("expected/date.xjb").getFile(); + assertFileEquals(new File(expectedFile), gen.generate(output)); + + gen.setWSDLName("calendar_external"); + gen.setServiceModel(getServiceInfo(EchoCalendar.class)); + assertEquals(Calendar.class, gen.getDateType()); + + expectedFile = getClass().getResource("expected/calendar.xjb").getFile(); + assertFileEquals(new File(expectedFile), gen.generate(output)); + } } Propchange: incubator/cxf/trunk/tools/javato/test/src/test/java/org/apache/cxf/tools/java2wsdl/generator/wsdl11/DateTypeCustomGeneratorTest.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: incubator/cxf/trunk/tools/javato/test/src/test/java/org/apache/cxf/tools/java2wsdl/generator/wsdl11/DateTypeCustomGeneratorTest.java ------------------------------------------------------------------------------ svn:keywords = Rev Date Modified: incubator/cxf/trunk/tools/javato/test/src/test/java/org/apache/cxf/tools/java2wsdl/generator/wsdl11/expected/calendar.xjb URL: http://svn.apache.org/viewvc/incubator/cxf/trunk/tools/javato/test/src/test/java/org/apache/cxf/tools/java2wsdl/generator/wsdl11/expected/calendar.xjb?view=diff&rev=559909&r1=559908&r2=559909 ============================================================================== --- incubator/cxf/trunk/tools/javato/test/src/test/java/org/apache/cxf/tools/java2wsdl/generator/wsdl11/expected/calendar.xjb (original) +++ incubator/cxf/trunk/tools/javato/test/src/test/java/org/apache/cxf/tools/java2wsdl/generator/wsdl11/expected/calendar.xjb Thu Jul 26 10:57:46 2007 @@ -1,32 +1,32 @@ - - - - - - - - - - - - + + + + + + + + + + + + Propchange: incubator/cxf/trunk/tools/javato/test/src/test/java/org/apache/cxf/tools/java2wsdl/generator/wsdl11/expected/calendar.xjb ------------------------------------------------------------------------------ svn:eol-style = native Propchange: incubator/cxf/trunk/tools/javato/test/src/test/java/org/apache/cxf/tools/java2wsdl/generator/wsdl11/expected/calendar.xjb ------------------------------------------------------------------------------ svn:keywords = Rev Date Propchange: incubator/cxf/trunk/tools/javato/test/src/test/java/org/apache/cxf/tools/java2wsdl/generator/wsdl11/expected/calendar.xjb ------------------------------------------------------------------------------ svn:mime-type = text/xml Modified: incubator/cxf/trunk/tools/javato/test/src/test/java/org/apache/cxf/tools/java2wsdl/generator/wsdl11/expected/calendar_embed.xml URL: http://svn.apache.org/viewvc/incubator/cxf/trunk/tools/javato/test/src/test/java/org/apache/cxf/tools/java2wsdl/generator/wsdl11/expected/calendar_embed.xml?view=diff&rev=559909&r1=559908&r2=559909 ============================================================================== --- incubator/cxf/trunk/tools/javato/test/src/test/java/org/apache/cxf/tools/java2wsdl/generator/wsdl11/expected/calendar_embed.xml (original) +++ incubator/cxf/trunk/tools/javato/test/src/test/java/org/apache/cxf/tools/java2wsdl/generator/wsdl11/expected/calendar_embed.xml Thu Jul 26 10:57:46 2007 @@ -1,31 +1,31 @@ - - - - - - - + + + + + + + Propchange: incubator/cxf/trunk/tools/javato/test/src/test/java/org/apache/cxf/tools/java2wsdl/generator/wsdl11/expected/calendar_embed.xml ------------------------------------------------------------------------------ svn:eol-style = native Propchange: incubator/cxf/trunk/tools/javato/test/src/test/java/org/apache/cxf/tools/java2wsdl/generator/wsdl11/expected/calendar_embed.xml ------------------------------------------------------------------------------ svn:keywords = Rev Date Propchange: incubator/cxf/trunk/tools/javato/test/src/test/java/org/apache/cxf/tools/java2wsdl/generator/wsdl11/expected/calendar_embed.xml ------------------------------------------------------------------------------ svn:mime-type = text/xml Modified: incubator/cxf/trunk/tools/javato/test/src/test/java/org/apache/cxf/tools/java2wsdl/generator/wsdl11/expected/date.xjb URL: http://svn.apache.org/viewvc/incubator/cxf/trunk/tools/javato/test/src/test/java/org/apache/cxf/tools/java2wsdl/generator/wsdl11/expected/date.xjb?view=diff&rev=559909&r1=559908&r2=559909 ============================================================================== --- incubator/cxf/trunk/tools/javato/test/src/test/java/org/apache/cxf/tools/java2wsdl/generator/wsdl11/expected/date.xjb (original) +++ incubator/cxf/trunk/tools/javato/test/src/test/java/org/apache/cxf/tools/java2wsdl/generator/wsdl11/expected/date.xjb Thu Jul 26 10:57:46 2007 @@ -1,32 +1,32 @@ - - - - - - - - - - - - + + + + + + + + + + + + Propchange: incubator/cxf/trunk/tools/javato/test/src/test/java/org/apache/cxf/tools/java2wsdl/generator/wsdl11/expected/date.xjb ------------------------------------------------------------------------------ svn:eol-style = native Propchange: incubator/cxf/trunk/tools/javato/test/src/test/java/org/apache/cxf/tools/java2wsdl/generator/wsdl11/expected/date.xjb ------------------------------------------------------------------------------ svn:keywords = Rev Date Propchange: incubator/cxf/trunk/tools/javato/test/src/test/java/org/apache/cxf/tools/java2wsdl/generator/wsdl11/expected/date.xjb ------------------------------------------------------------------------------ svn:mime-type = text/xml Modified: incubator/cxf/trunk/tools/javato/test/src/test/java/org/apache/cxf/tools/java2wsdl/generator/wsdl11/expected/date_embed.xml URL: http://svn.apache.org/viewvc/incubator/cxf/trunk/tools/javato/test/src/test/java/org/apache/cxf/tools/java2wsdl/generator/wsdl11/expected/date_embed.xml?view=diff&rev=559909&r1=559908&r2=559909 ============================================================================== --- incubator/cxf/trunk/tools/javato/test/src/test/java/org/apache/cxf/tools/java2wsdl/generator/wsdl11/expected/date_embed.xml (original) +++ incubator/cxf/trunk/tools/javato/test/src/test/java/org/apache/cxf/tools/java2wsdl/generator/wsdl11/expected/date_embed.xml Thu Jul 26 10:57:46 2007 @@ -1,31 +1,31 @@ - - - - - - - + + + + + + + Propchange: incubator/cxf/trunk/tools/javato/test/src/test/java/org/apache/cxf/tools/java2wsdl/generator/wsdl11/expected/date_embed.xml ------------------------------------------------------------------------------ svn:eol-style = native Propchange: incubator/cxf/trunk/tools/javato/test/src/test/java/org/apache/cxf/tools/java2wsdl/generator/wsdl11/expected/date_embed.xml ------------------------------------------------------------------------------ svn:keywords = Rev Date Propchange: incubator/cxf/trunk/tools/javato/test/src/test/java/org/apache/cxf/tools/java2wsdl/generator/wsdl11/expected/date_embed.xml ------------------------------------------------------------------------------ svn:mime-type = text/xml Modified: incubator/cxf/trunk/tools/javato/test/src/test/java/org/apache/cxf/tools/java2wsdl/processor/Hello.java URL: http://svn.apache.org/viewvc/incubator/cxf/trunk/tools/javato/test/src/test/java/org/apache/cxf/tools/java2wsdl/processor/Hello.java?view=diff&rev=559909&r1=559908&r2=559909 ============================================================================== --- incubator/cxf/trunk/tools/javato/test/src/test/java/org/apache/cxf/tools/java2wsdl/processor/Hello.java (original) +++ incubator/cxf/trunk/tools/javato/test/src/test/java/org/apache/cxf/tools/java2wsdl/processor/Hello.java Thu Jul 26 10:57:46 2007 @@ -1,27 +1,27 @@ -/** - * Licensed to the Apache Software Foundation (ASF) under one - * or more contributor license agreements. See the NOTICE file - * distributed with this work for additional information - * regarding copyright ownership. The ASF licenses this file - * to you 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.cxf.tools.java2wsdl.processor; - -import javax.jws.WebService; - -@WebService -public interface Hello extends java.rmi.Remote { - String hello(); +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you 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.cxf.tools.java2wsdl.processor; + +import javax.jws.WebService; + +@WebService +public interface Hello extends java.rmi.Remote { + String hello(); } Propchange: incubator/cxf/trunk/tools/javato/test/src/test/java/org/apache/cxf/tools/java2wsdl/processor/Hello.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: incubator/cxf/trunk/tools/javato/test/src/test/java/org/apache/cxf/tools/java2wsdl/processor/Hello.java ------------------------------------------------------------------------------ svn:keywords = Rev Date Modified: incubator/cxf/trunk/tools/javato/test/src/test/java/org/apache/cxf/tools/java2wsdl/processor/expected/echo_calendar.xjb URL: http://svn.apache.org/viewvc/incubator/cxf/trunk/tools/javato/test/src/test/java/org/apache/cxf/tools/java2wsdl/processor/expected/echo_calendar.xjb?view=diff&rev=559909&r1=559908&r2=559909 ============================================================================== --- incubator/cxf/trunk/tools/javato/test/src/test/java/org/apache/cxf/tools/java2wsdl/processor/expected/echo_calendar.xjb (original) +++ incubator/cxf/trunk/tools/javato/test/src/test/java/org/apache/cxf/tools/java2wsdl/processor/expected/echo_calendar.xjb Thu Jul 26 10:57:46 2007 @@ -1,32 +1,32 @@ - - - - - - - - + + + + + + + + Propchange: incubator/cxf/trunk/tools/javato/test/src/test/java/org/apache/cxf/tools/java2wsdl/processor/expected/echo_calendar.xjb ------------------------------------------------------------------------------ svn:eol-style = native Propchange: incubator/cxf/trunk/tools/javato/test/src/test/java/org/apache/cxf/tools/java2wsdl/processor/expected/echo_calendar.xjb ------------------------------------------------------------------------------ svn:keywords = Rev Date Propchange: incubator/cxf/trunk/tools/javato/test/src/test/java/org/apache/cxf/tools/java2wsdl/processor/expected/echo_calendar.xjb ------------------------------------------------------------------------------ svn:mime-type = text/xml Modified: incubator/cxf/trunk/tools/javato/test/src/test/java/org/apache/cxf/tools/java2wsdl/processor/expected/echo_date.xjb URL: http://svn.apache.org/viewvc/incubator/cxf/trunk/tools/javato/test/src/test/java/org/apache/cxf/tools/java2wsdl/processor/expected/echo_date.xjb?view=diff&rev=559909&r1=559908&r2=559909 ============================================================================== --- incubator/cxf/trunk/tools/javato/test/src/test/java/org/apache/cxf/tools/java2wsdl/processor/expected/echo_date.xjb (original) +++ incubator/cxf/trunk/tools/javato/test/src/test/java/org/apache/cxf/tools/java2wsdl/processor/expected/echo_date.xjb Thu Jul 26 10:57:46 2007 @@ -1,31 +1,31 @@ - - - - - - - + + + + + + + Propchange: incubator/cxf/trunk/tools/javato/test/src/test/java/org/apache/cxf/tools/java2wsdl/processor/expected/echo_date.xjb ------------------------------------------------------------------------------ svn:eol-style = native Propchange: incubator/cxf/trunk/tools/javato/test/src/test/java/org/apache/cxf/tools/java2wsdl/processor/expected/echo_date.xjb ------------------------------------------------------------------------------ svn:keywords = Rev Date Propchange: incubator/cxf/trunk/tools/javato/test/src/test/java/org/apache/cxf/tools/java2wsdl/processor/expected/echo_date.xjb ------------------------------------------------------------------------------ svn:mime-type = text/xml Modified: incubator/cxf/trunk/tools/javato/test/src/test/java/org/apache/cxf/tools/java2wsdl/processor/expected/hello_world_fault_expected.wsdl URL: http://svn.apache.org/viewvc/incubator/cxf/trunk/tools/javato/test/src/test/java/org/apache/cxf/tools/java2wsdl/processor/expected/hello_world_fault_expected.wsdl?view=diff&rev=559909&r1=559908&r2=559909 ============================================================================== --- incubator/cxf/trunk/tools/javato/test/src/test/java/org/apache/cxf/tools/java2wsdl/processor/expected/hello_world_fault_expected.wsdl (original) +++ incubator/cxf/trunk/tools/javato/test/src/test/java/org/apache/cxf/tools/java2wsdl/processor/expected/hello_world_fault_expected.wsdl Thu Jul 26 10:57:46 2007 @@ -1,148 +1,148 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Propchange: incubator/cxf/trunk/tools/javato/test/src/test/java/org/apache/cxf/tools/java2wsdl/processor/expected/hello_world_fault_expected.wsdl ------------------------------------------------------------------------------ svn:eol-style = native Propchange: incubator/cxf/trunk/tools/javato/test/src/test/java/org/apache/cxf/tools/java2wsdl/processor/expected/hello_world_fault_expected.wsdl ------------------------------------------------------------------------------ svn:keywords = Rev Date Propchange: incubator/cxf/trunk/tools/javato/test/src/test/java/org/apache/cxf/tools/java2wsdl/processor/expected/hello_world_fault_expected.wsdl ------------------------------------------------------------------------------ svn:mime-type = text/xml Modified: incubator/cxf/trunk/tools/javato/test/src/test/java/org/apache/cxf/tools/java2wsdl/processor/expected/list_expected.wsdl URL: http://svn.apache.org/viewvc/incubator/cxf/trunk/tools/javato/test/src/test/java/org/apache/cxf/tools/java2wsdl/processor/expected/list_expected.wsdl?view=diff&rev=559909&r1=559908&r2=559909 ============================================================================== --- incubator/cxf/trunk/tools/javato/test/src/test/java/org/apache/cxf/tools/java2wsdl/processor/expected/list_expected.wsdl (original) +++ incubator/cxf/trunk/tools/javato/test/src/test/java/org/apache/cxf/tools/java2wsdl/processor/expected/list_expected.wsdl Thu Jul 26 10:57:46 2007 @@ -1,70 +1,70 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Propchange: incubator/cxf/trunk/tools/javato/test/src/test/java/org/apache/cxf/tools/java2wsdl/processor/expected/list_expected.wsdl ------------------------------------------------------------------------------ svn:eol-style = native Propchange: incubator/cxf/trunk/tools/javato/test/src/test/java/org/apache/cxf/tools/java2wsdl/processor/expected/list_expected.wsdl ------------------------------------------------------------------------------ svn:keywords = Rev Date Propchange: incubator/cxf/trunk/tools/javato/test/src/test/java/org/apache/cxf/tools/java2wsdl/processor/expected/list_expected.wsdl ------------------------------------------------------------------------------ svn:mime-type = text/xml