generated from quarkiverse/quarkiverse-template
-
Notifications
You must be signed in to change notification settings - Fork 62
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move code-first ClientGreetingClientTest to the client test module
- Loading branch information
Showing
6 changed files
with
66 additions
and
112 deletions.
There are no files selected for viewing
17 changes: 0 additions & 17 deletions
17
integration-tests/basic/src/main/java/io/quarkiverse/it/cxf/GreetingClientWebService.java
This file was deleted.
Oops, something went wrong.
95 changes: 0 additions & 95 deletions
95
integration-tests/basic/src/test/java/io/quarkiverse/it/cxf/ClientGreetingClientTest.java
This file was deleted.
Oops, something went wrong.
34 changes: 34 additions & 0 deletions
34
integration-tests/client/src/main/java/io/quarkiverse/cxf/client/it/CodeFirstClient.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
/* | ||
* JBoss, Home of Professional Open Source | ||
* Copyright 2015, Red Hat, Inc. and/or its affiliates, and individual | ||
* contributors by the @authors tag. See the copyright.txt in the | ||
* distribution for a full listing of individual contributors. | ||
* | ||
* Licensed 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 io.quarkiverse.cxf.client.it; | ||
|
||
import javax.jws.WebMethod; | ||
import javax.jws.WebService; | ||
|
||
/** | ||
* An incomplete copy of | ||
* https://github.com/l2x6/calculator-ws/blob/1.0/src/main/java/org/jboss/as/quickstarts/wscalculator/CalculatorService.java | ||
* CXF should be able to use this to produce a partial client communicating with a compatible service endpoint. | ||
*/ | ||
@WebService(targetNamespace = CodeFirstClient.TARGET_NS, name = "CalculatorService") | ||
public interface CodeFirstClient { | ||
|
||
public static final String TARGET_NS = "http://www.jboss.org/eap/quickstarts/wscalculator/Calculator"; | ||
|
||
@WebMethod | ||
public int multiply(int intA, int intB); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters