summaryrefslogtreecommitdiffstats
path: root/sca-java-1.x/trunk/itest/jaxws/src/main/java/jtest/TestAbstract.java
diff options
context:
space:
mode:
authornash <nash@13f79535-47bb-0310-9956-ffa450edef68>2010-10-27 21:26:27 +0000
committernash <nash@13f79535-47bb-0310-9956-ffa450edef68>2010-10-27 21:26:27 +0000
commit9381c02e0b02064a86de6da350ee480a588dfcb0 (patch)
treebadb5e29bf926fd51d7962ed809d4b390db4107f /sca-java-1.x/trunk/itest/jaxws/src/main/java/jtest/TestAbstract.java
parent9084f7e6a1d145f7034fc3c43163ea2fecf0df5b (diff)
Merge remaining r743192 changes from 2.x to 1.x and add a new itest for @XmlJavaTypeAdapter
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1028105 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'sca-java-1.x/trunk/itest/jaxws/src/main/java/jtest/TestAbstract.java')
-rw-r--r--sca-java-1.x/trunk/itest/jaxws/src/main/java/jtest/TestAbstract.java31
1 files changed, 31 insertions, 0 deletions
diff --git a/sca-java-1.x/trunk/itest/jaxws/src/main/java/jtest/TestAbstract.java b/sca-java-1.x/trunk/itest/jaxws/src/main/java/jtest/TestAbstract.java
new file mode 100644
index 0000000000..a633908bc3
--- /dev/null
+++ b/sca-java-1.x/trunk/itest/jaxws/src/main/java/jtest/TestAbstract.java
@@ -0,0 +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 jtest;
+
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
+
+/**
+ * The test abstract class
+ */
+@XmlJavaTypeAdapter(TestAdapter.class)
+public abstract class TestAbstract {
+
+ public abstract String getGreeting();
+}