Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id A4519200BEC for ; Thu, 29 Dec 2016 13:00:57 +0100 (CET) Received: by cust-asf.ponee.io (Postfix) id A2D56160B2D; Thu, 29 Dec 2016 12:00:57 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 26862160B15 for ; Thu, 29 Dec 2016 13:00:56 +0100 (CET) Received: (qmail 8443 invoked by uid 500); 29 Dec 2016 12:00:55 -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 8434 invoked by uid 99); 29 Dec 2016 12:00:55 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 29 Dec 2016 12:00:55 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 3DAC8DFBE6; Thu, 29 Dec 2016 12:00:55 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: sergeyb@apache.org To: commits@cxf.apache.org Message-Id: <6436b9b379c641acabfa5c0916f088e2@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: cxf git commit: [CXF-7196] Removing SDO test code in rt/rs/extensions/providers Date: Thu, 29 Dec 2016 12:00:55 +0000 (UTC) archived-at: Thu, 29 Dec 2016 12:00:57 -0000 Repository: cxf Updated Branches: refs/heads/master 3be1cef6d -> 1e49510ea [CXF-7196] Removing SDO test code in rt/rs/extensions/providers Project: http://git-wip-us.apache.org/repos/asf/cxf/repo Commit: http://git-wip-us.apache.org/repos/asf/cxf/commit/1e49510e Tree: http://git-wip-us.apache.org/repos/asf/cxf/tree/1e49510e Diff: http://git-wip-us.apache.org/repos/asf/cxf/diff/1e49510e Branch: refs/heads/master Commit: 1e49510ea71551e543b22f6693307b1436e81db0 Parents: 3be1cef Author: Sergey Beryozkin Authored: Thu Dec 29 12:00:38 2016 +0000 Committer: Sergey Beryozkin Committed: Thu Dec 29 12:00:38 2016 +0000 ---------------------------------------------------------------------- rt/rs/extensions/providers/pom.xml | 6 - .../cxf/jaxrs/resources/sdo/SdoFactory.java | 30 -- .../cxf/jaxrs/resources/sdo/Structure.java | 59 --- .../resources/sdo/impl/SdoFactoryImpl.java | 154 ------ .../jaxrs/resources/sdo/impl/StructureImpl.java | 510 ------------------- .../cxf/jaxrs/resources/sdo/structure.xsd | 29 -- 6 files changed, 788 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cxf/blob/1e49510e/rt/rs/extensions/providers/pom.xml ---------------------------------------------------------------------- diff --git a/rt/rs/extensions/providers/pom.xml b/rt/rs/extensions/providers/pom.xml index a698681..068026a 100644 --- a/rt/rs/extensions/providers/pom.xml +++ b/rt/rs/extensions/providers/pom.xml @@ -132,12 +132,6 @@ test - org.apache.cxf - cxf-rt-databinding-sdo - ${project.version} - test - - org.springframework spring-core test http://git-wip-us.apache.org/repos/asf/cxf/blob/1e49510e/rt/rs/extensions/providers/src/test/java/org/apache/cxf/jaxrs/resources/sdo/SdoFactory.java ---------------------------------------------------------------------- diff --git a/rt/rs/extensions/providers/src/test/java/org/apache/cxf/jaxrs/resources/sdo/SdoFactory.java b/rt/rs/extensions/providers/src/test/java/org/apache/cxf/jaxrs/resources/sdo/SdoFactory.java deleted file mode 100644 index df53a79..0000000 --- a/rt/rs/extensions/providers/src/test/java/org/apache/cxf/jaxrs/resources/sdo/SdoFactory.java +++ /dev/null @@ -1,30 +0,0 @@ -/** - * 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.jaxrs.resources.sdo; - -import commonj.sdo.helper.HelperContext; - -public interface SdoFactory { - - SdoFactory INSTANCE = org.apache.cxf.jaxrs.resources.sdo.impl.SdoFactoryImpl.init(); - Structure createStructure(); - - void register(HelperContext scope); -} - http://git-wip-us.apache.org/repos/asf/cxf/blob/1e49510e/rt/rs/extensions/providers/src/test/java/org/apache/cxf/jaxrs/resources/sdo/Structure.java ---------------------------------------------------------------------- diff --git a/rt/rs/extensions/providers/src/test/java/org/apache/cxf/jaxrs/resources/sdo/Structure.java b/rt/rs/extensions/providers/src/test/java/org/apache/cxf/jaxrs/resources/sdo/Structure.java deleted file mode 100644 index aa0e27f..0000000 --- a/rt/rs/extensions/providers/src/test/java/org/apache/cxf/jaxrs/resources/sdo/Structure.java +++ /dev/null @@ -1,59 +0,0 @@ -/** - * 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. - */ -/** - * 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.jaxrs.resources.sdo; - -import java.io.Serializable; - -import java.util.List; - -public interface Structure extends Serializable { - String getText(); - void setText(String value); - void unsetText(); - boolean isSetText(); - int getInt(); - void setInt(int value); - void unsetInt(); - boolean isSetInt(); - double getDbl(); - void setDbl(double value); - void unsetDbl(); - boolean isSetDbl(); - @SuppressWarnings("rawtypes") - List getTexts(); -} - http://git-wip-us.apache.org/repos/asf/cxf/blob/1e49510e/rt/rs/extensions/providers/src/test/java/org/apache/cxf/jaxrs/resources/sdo/impl/SdoFactoryImpl.java ---------------------------------------------------------------------- diff --git a/rt/rs/extensions/providers/src/test/java/org/apache/cxf/jaxrs/resources/sdo/impl/SdoFactoryImpl.java b/rt/rs/extensions/providers/src/test/java/org/apache/cxf/jaxrs/resources/sdo/impl/SdoFactoryImpl.java deleted file mode 100644 index 034dd55..0000000 --- a/rt/rs/extensions/providers/src/test/java/org/apache/cxf/jaxrs/resources/sdo/impl/SdoFactoryImpl.java +++ /dev/null @@ -1,154 +0,0 @@ -/** - * 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.jaxrs.resources.sdo.impl; - -import org.apache.cxf.jaxrs.resources.sdo.SdoFactory; -import org.apache.cxf.jaxrs.resources.sdo.Structure; -import org.apache.tuscany.sdo.helper.HelperContextImpl; -import org.apache.tuscany.sdo.impl.FactoryBase; -import org.apache.tuscany.sdo.model.ModelFactory; -import org.apache.tuscany.sdo.model.impl.ModelFactoryImpl; - -import commonj.sdo.DataObject; -import commonj.sdo.Property; -import commonj.sdo.Type; -import commonj.sdo.helper.HelperContext; - -public class SdoFactoryImpl extends FactoryBase implements SdoFactory { - public static final String NAMESPACE_URI = "http://apache.org/structure/types"; - public static final String NAMESPACE_PREFIX = "tns"; - public static final String PATTERN_VERSION = "1.2"; - public static final int STRUCTURE = 1; - private static SdoFactoryImpl instance; - - protected Type structureType; - private boolean isCreated; - private boolean isInitialized; - - public SdoFactoryImpl() { - super(NAMESPACE_URI, NAMESPACE_PREFIX, "org.apache.cxf.jaxrs.resources.sdo"); - } - - public void register(HelperContext scope) { - if (scope == null) { - throw new IllegalArgumentException("Scope can not be null"); - } - - if (((HelperContextImpl)scope).getExtendedMetaData().getPackage(NAMESPACE_URI) != null) { - return; - } - // Register this package with provided scope - ((HelperContextImpl)scope).getExtendedMetaData().putPackage(NAMESPACE_URI, this); - - // Register dependent packages with provided scope - ModelFactory.INSTANCE.register(scope); - } - - public DataObject create(int typeNumber) { - switch (typeNumber) { - case STRUCTURE: - return (DataObject)createStructure(); - default: - return super.create(typeNumber); - } - } - - public Structure createStructure() { - return new StructureImpl(); - } - - public Type getStructure() { - return structureType; - } - - public static SdoFactoryImpl init() { - if (instance != null) { - return instance; - } - instance = new SdoFactoryImpl(); - - instance.createMetaData(); - instance.initializeMetaData(); - return instance; - } - - public void createMetaData() { - if (isCreated) { - return; - } - isCreated = true; - - structureType = createType(false, STRUCTURE); - createProperty(true, structureType, StructureImpl._INTERNAL_TEXT); - createProperty(true, structureType, StructureImpl._INTERNAL_INT); - createProperty(true, structureType, StructureImpl._INTERNAL_DBL); - createProperty(true, structureType, StructureImpl._INTERNAL_TEXTS); - } - - public void initializeMetaData() { - if (isInitialized) { - return; - } - isInitialized = true; - - ModelFactoryImpl theModelPackageImpl = ModelFactoryImpl.init(); - Property property = null; - - // Add supertypes to types - - initializeType(structureType, Structure.class, "Structure", false); - property = getLocalProperty(structureType, 0); - initializeProperty(property, theModelPackageImpl.getString(), "text", null, 1, 1, Structure.class, - false, true, false); - - property = getLocalProperty(structureType, 1); - initializeProperty(property, theModelPackageImpl.getInt(), "int", null, 1, 1, Structure.class, false, - true, false); - - property = getLocalProperty(structureType, 2); - initializeProperty(property, theModelPackageImpl.getDouble(), "dbl", null, 1, 1, Structure.class, - false, true, false); - - property = getLocalProperty(structureType, 3); - initializeProperty(property, theModelPackageImpl.getString(), "texts", null, 1, -1, Structure.class, - false, false, false); - - createXSDMetaData(theModelPackageImpl); - } - - protected void createXSDMetaData(ModelFactoryImpl theModelPackageImpl) { - super.initXSD(); - - addXSDMapping(structureType, new String[] {"name", "Structure", "kind", "elementOnly"}); - - addXSDMapping(getLocalProperty(structureType, 0), new String[] {"kind", "element", "name", "text", - "namespace", "##targetNamespace"}); - - addXSDMapping(getLocalProperty(structureType, 1), new String[] {"kind", "element", "name", "int", - "namespace", "##targetNamespace"}); - - addXSDMapping(getLocalProperty(structureType, 2), new String[] {"kind", "element", "name", "dbl", - "namespace", "##targetNamespace"}); - - addXSDMapping(getLocalProperty(structureType, 3), new String[] {"kind", "element", "name", "texts", - "namespace", "##targetNamespace"}); - } - -} // SdoFactoryImpl http://git-wip-us.apache.org/repos/asf/cxf/blob/1e49510e/rt/rs/extensions/providers/src/test/java/org/apache/cxf/jaxrs/resources/sdo/impl/StructureImpl.java ---------------------------------------------------------------------- diff --git a/rt/rs/extensions/providers/src/test/java/org/apache/cxf/jaxrs/resources/sdo/impl/StructureImpl.java b/rt/rs/extensions/providers/src/test/java/org/apache/cxf/jaxrs/resources/sdo/impl/StructureImpl.java deleted file mode 100644 index b275c6c..0000000 --- a/rt/rs/extensions/providers/src/test/java/org/apache/cxf/jaxrs/resources/sdo/impl/StructureImpl.java +++ /dev/null @@ -1,510 +0,0 @@ -/** - * 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.jaxrs.resources.sdo.impl; - -import java.util.Collection; -import java.util.List; - -import org.apache.cxf.jaxrs.resources.sdo.SdoFactory; -import org.apache.cxf.jaxrs.resources.sdo.Structure; -import org.apache.tuscany.sdo.impl.DataObjectBase; - -import commonj.sdo.Type; - -//CHECKSTYLE:OFF -@SuppressWarnings("rawtypes") -public class StructureImpl extends DataObjectBase implements Structure { - - public static final int TEXT = 0; - - public static final int INT = 1; - - public static final int DBL = 2; - - public static final int TEXTS = 3; - - public static final int SDO_PROPERTY_COUNT = 4; - - public static final int EXTENDED_PROPERTY_COUNT = 0; - - /** - * The internal feature id for the 'Text' attribute. - * - * @generated - * @ordered - */ - public static final int _INTERNAL_TEXT = 0; - - /** - * The internal feature id for the 'Int' attribute. - * - * @generated - * @ordered - */ - public static final int _INTERNAL_INT = 1; - - /** - * The internal feature id for the 'Dbl' attribute. - * - * @generated - * @ordered - */ - public static final int _INTERNAL_DBL = 2; - - /** - * The internal feature id for the 'Texts' attribute list. - * - * - * @generated - * @ordered - */ - public static final int _INTERNAL_TEXTS = 3; - - /** - * The number of properties for this type. - * - * @generated - * @ordered - */ - public static final int INTERNAL_PROPERTY_COUNT = 4; - - /** - * The default value of the '{@link #getText() Text}' attribute. - * - * - * @see #getText() - * @generated - * @ordered - */ - protected static final String TEXT_DEFAULT_ = null; - - /** - * The cached value of the '{@link #getText() Text}' attribute. - * - * - * @see #getText() - * @generated - * @ordered - */ - protected String text = TEXT_DEFAULT_; - - /** - * This is true if the Text attribute has been set. - * - * - * @generated - * @ordered - */ - protected boolean text_set_ = false; - - /** - * The default value of the '{@link #getInt() Int}' attribute. - * - * @see #getInt() - * @generated - * @ordered - */ - protected static final int INT_DEFAULT_ = 0; - - /** - * The cached value of the '{@link #getInt() Int}' attribute. - * - * @see #getInt() - * @generated - * @ordered - */ - protected int int_ = INT_DEFAULT_; - - /** - * This is true if the Int attribute has been set. - * - * - * @generated - * @ordered - */ - protected boolean int_set_ = false; - - /** - * The default value of the '{@link #getDbl() Dbl}' attribute. - * - * @see #getDbl() - * @generated - * @ordered - */ - protected static final double DBL_DEFAULT_ = 0.0; - - /** - * The cached value of the '{@link #getDbl() Dbl}' attribute. - * - * @see #getDbl() - * @generated - * @ordered - */ - protected double dbl = DBL_DEFAULT_; - - /** - * This is true if the Dbl attribute has been set. - * - * - * @generated - * @ordered - */ - protected boolean dbl_set_ = false; - - /** - * The cached value of the '{@link #getTexts() Texts}' attribute - * list. - * - * @see #getTexts() - * @generated - * @ordered - */ - - protected List texts = null; - - /** - * - * - * @generated - */ - public StructureImpl() { - super(); - } - - protected int internalConvertIndex(int internalIndex) { - switch (internalIndex) { - case _INTERNAL_TEXT: - return TEXT; - case _INTERNAL_INT: - return INT; - case _INTERNAL_DBL: - return DBL; - case _INTERNAL_TEXTS: - return TEXTS; - } - return super.internalConvertIndex(internalIndex); - } - - /** - * - * - * @generated - */ - public Type getStaticType() { - return ((SdoFactoryImpl)SdoFactory.INSTANCE).getStructure(); - } - - /** - * - * - * @generated - */ - public int getStaticPropertyCount() { - return INTERNAL_PROPERTY_COUNT; - } - - /** - * - * - * @generated - */ - public String getText() { - return text; - } - - /** - * - * - * @generated - */ - public void setText(String newText) { - String oldText = text; - text = newText; - boolean oldText_set_ = text_set_; - text_set_ = true; - if (isNotifying()) { - notify(ChangeKind.SET, _INTERNAL_TEXT, oldText, text, !oldText_set_); - } - } - - /** - * - * - * @generated - */ - public void unsetText() { - String oldText = text; - boolean oldText_set_ = text_set_; - text = TEXT_DEFAULT_; - text_set_ = false; - if (isNotifying()) { - notify(ChangeKind.UNSET, _INTERNAL_TEXT, oldText, TEXT_DEFAULT_, oldText_set_); - } - } - - /** - * - * - * @generated - */ - public boolean isSetText() { - return text_set_; - } - - /** - * - * - * @generated - */ - public int getInt() { - return int_; - } - - /** - * - * - * @generated - */ - public void setInt(int newInt) { - int oldInt = int_; - int_ = newInt; - boolean oldInt_set_ = int_set_; - int_set_ = true; - if (isNotifying()) { - notify(ChangeKind.SET, _INTERNAL_INT, oldInt, int_, !oldInt_set_); - } - } - - /** - * - * - * @generated - */ - public void unsetInt() { - int oldInt = int_; - boolean oldInt_set_ = int_set_; - int_ = INT_DEFAULT_; - int_set_ = false; - if (isNotifying()) { - notify(ChangeKind.UNSET, _INTERNAL_INT, oldInt, INT_DEFAULT_, oldInt_set_); - } - } - - /** - * - * - * @generated - */ - public boolean isSetInt() { - return int_set_; - } - - /** - * - * - * @generated - */ - public double getDbl() { - return dbl; - } - - /** - * - * - * @generated - */ - public void setDbl(double newDbl) { - double oldDbl = dbl; - dbl = newDbl; - boolean oldDbl_set_ = dbl_set_; - dbl_set_ = true; - if (isNotifying()) { - notify(ChangeKind.SET, _INTERNAL_DBL, oldDbl, dbl, !oldDbl_set_); - } - } - - /** - * - * - * @generated - */ - public void unsetDbl() { - double oldDbl = dbl; - boolean oldDbl_set_ = dbl_set_; - dbl = DBL_DEFAULT_; - dbl_set_ = false; - if (isNotifying()) { - notify(ChangeKind.UNSET, _INTERNAL_DBL, oldDbl, DBL_DEFAULT_, oldDbl_set_); - } - } - - /** - * - * - * @generated - */ - public boolean isSetDbl() { - return dbl_set_; - } - - /** - * - * - * @generated - */ - public List getTexts() { - if (texts == null) { - texts = createPropertyList(ListKind.DATATYPE, String.class, TEXTS, 0); - } - return texts; - } - - /** - * - * - * @generated - */ - public Object get(int propertyIndex, boolean resolve) { - switch (propertyIndex) { - case TEXT: - return getText(); - case INT: - return new Integer(getInt()); - case DBL: - return new Double(getDbl()); - case TEXTS: - return getTexts(); - } - return super.get(propertyIndex, resolve); - } - - /** - * - * - * @generated - */ - @SuppressWarnings("unchecked") - public void set(int propertyIndex, Object newValue) { - switch (propertyIndex) { - case TEXT: - setText((String)newValue); - return; - case INT: - setInt(((Integer)newValue).intValue()); - return; - case DBL: - setDbl(((Double)newValue).doubleValue()); - return; - case TEXTS: - getTexts().clear(); - getTexts().addAll((Collection)newValue); - return; - } - super.set(propertyIndex, newValue); - } - - /** - * - * - * @generated - */ - public void unset(int propertyIndex) { - switch (propertyIndex) { - case TEXT: - unsetText(); - return; - case INT: - unsetInt(); - return; - case DBL: - unsetDbl(); - return; - case TEXTS: - getTexts().clear(); - return; - } - super.unset(propertyIndex); - } - - /** - * - * - * @generated - */ - public boolean isSet(int propertyIndex) { - switch (propertyIndex) { - case TEXT: - return isSetText(); - case INT: - return isSetInt(); - case DBL: - return isSetDbl(); - case TEXTS: - return texts != null && !texts.isEmpty(); - } - return super.isSet(propertyIndex); - } - - /** - * - * - * @generated - */ - public String toString() { - if (isProxy(this)) { - return super.toString(); - } - - StringBuilder result = new StringBuilder(super.toString()); - result.append(" (text: "); - if (text_set_) { - result.append(text); - } else { - result.append(""); - } - result.append(", int: "); - if (int_set_) { - result.append(int_); - } else { - result.append(""); - } - result.append(", dbl: "); - if (dbl_set_) { - result.append(dbl); - } else { - result.append(""); - } - result.append(", texts: "); - result.append(texts); - result.append(')'); - return result.toString(); - } - -} -//CHECKSTYLE:ON - - http://git-wip-us.apache.org/repos/asf/cxf/blob/1e49510e/rt/rs/extensions/providers/src/test/java/org/apache/cxf/jaxrs/resources/sdo/structure.xsd ---------------------------------------------------------------------- diff --git a/rt/rs/extensions/providers/src/test/java/org/apache/cxf/jaxrs/resources/sdo/structure.xsd b/rt/rs/extensions/providers/src/test/java/org/apache/cxf/jaxrs/resources/sdo/structure.xsd deleted file mode 100644 index bc88e0a..0000000 --- a/rt/rs/extensions/providers/src/test/java/org/apache/cxf/jaxrs/resources/sdo/structure.xsd +++ /dev/null @@ -1,29 +0,0 @@ - - - - - - - - - - - \ No newline at end of file