diff options
author | jsdelfino <jsdelfino@13f79535-47bb-0310-9956-ffa450edef68> | 2010-08-29 18:25:24 +0000 |
---|---|---|
committer | jsdelfino <jsdelfino@13f79535-47bb-0310-9956-ffa450edef68> | 2010-08-29 18:25:24 +0000 |
commit | b095bb2e402c461ce91c5764dc68357f48e2342c (patch) | |
tree | 5c296d99f3be3c5cc3c2c19ca4405d957539e5f7 /sca-java-2.x/trunk/samples/implementation-extension/src/main/java/sample/api | |
parent | 3518556b241cf0ae6f71be798a35eeed4e3c8502 (diff) |
Sample implementation extension that shows how to support both Java and WSDL interfaces and different data bindings.
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@990618 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'sca-java-2.x/trunk/samples/implementation-extension/src/main/java/sample/api')
3 files changed, 96 insertions, 0 deletions
diff --git a/sca-java-2.x/trunk/samples/implementation-extension/src/main/java/sample/api/Java.java b/sca-java-2.x/trunk/samples/implementation-extension/src/main/java/sample/api/Java.java new file mode 100644 index 0000000000..6c9240005f --- /dev/null +++ b/sca-java-2.x/trunk/samples/implementation-extension/src/main/java/sample/api/Java.java @@ -0,0 +1,34 @@ +/* + * 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 sample.api; + +import static java.lang.annotation.ElementType.FIELD; +import static java.lang.annotation.ElementType.TYPE; +import static java.lang.annotation.RetentionPolicy.RUNTIME; + +import java.lang.annotation.Retention; +import java.lang.annotation.Target; + +@Target( {TYPE, FIELD}) +@Retention(RUNTIME) +public @interface Java { + + Class<?> value(); +} diff --git a/sca-java-2.x/trunk/samples/implementation-extension/src/main/java/sample/api/WSDL.java b/sca-java-2.x/trunk/samples/implementation-extension/src/main/java/sample/api/WSDL.java new file mode 100644 index 0000000000..655770ec32 --- /dev/null +++ b/sca-java-2.x/trunk/samples/implementation-extension/src/main/java/sample/api/WSDL.java @@ -0,0 +1,34 @@ +/* + * 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 sample.api; + +import static java.lang.annotation.ElementType.FIELD; +import static java.lang.annotation.ElementType.TYPE; +import static java.lang.annotation.RetentionPolicy.RUNTIME; + +import java.lang.annotation.Retention; +import java.lang.annotation.Target; + +@Target( {TYPE, FIELD}) +@Retention(RUNTIME) +public @interface WSDL { + + String value(); +} diff --git a/sca-java-2.x/trunk/samples/implementation-extension/src/main/java/sample/api/WSDLReference.java b/sca-java-2.x/trunk/samples/implementation-extension/src/main/java/sample/api/WSDLReference.java new file mode 100644 index 0000000000..cad8478a2a --- /dev/null +++ b/sca-java-2.x/trunk/samples/implementation-extension/src/main/java/sample/api/WSDLReference.java @@ -0,0 +1,28 @@ +/* + * 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 sample.api; + +import org.w3c.dom.Element; + +public interface WSDLReference { + + Element call(String op, Element e); + +} |