-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Replace 'wsdlFiles' with 'includes' to make it more clear that files …
…need to be in the 'wsdlDir' directory
- Loading branch information
1 parent
4a33e56
commit 7195b3d
Showing
12 changed files
with
114 additions
and
70 deletions.
There are no files selected for viewing
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
14 changes: 14 additions & 0 deletions
14
...st/filter-test/src/main/java/com/github/bjornvester/wsdl2java/HelloWorldAbstractImpl.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,14 @@ | ||
package com.github.bjornvester.wsdl2java; | ||
|
||
import com.github.bjornvester.example._abstract.HelloWorldAbstract; | ||
import com.github.bjornvester.example._abstract.SayHi; | ||
import com.github.bjornvester.example._abstract.SayHiResponse; | ||
|
||
public class HelloWorldAbstractImpl implements HelloWorldAbstract { | ||
@Override | ||
public SayHiResponse sayHi(SayHi request) { | ||
SayHiResponse response = new SayHiResponse(); | ||
response.setReturn("Hi, " + request.getArg0()); | ||
return response; | ||
} | ||
} |
14 changes: 14 additions & 0 deletions
14
...test/filter-test/src/main/java/com/github/bjornvester/wsdl2java/HelloWorldNestedImpl.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,14 @@ | ||
package com.github.bjornvester.wsdl2java; | ||
|
||
import com.github.bjornvester.example.nested.HelloWorldNested; | ||
import com.github.bjornvester.example.nested.SayHi; | ||
import com.github.bjornvester.example.nested.SayHiResponse; | ||
|
||
public class HelloWorldNestedImpl implements HelloWorldNested { | ||
@Override | ||
public SayHiResponse sayHi(SayHi request) { | ||
SayHiResponse response = new SayHiResponse(); | ||
response.setReturn("Hi, " + request.getArg0()); | ||
return response; | ||
} | ||
} |
File renamed without changes.
File renamed without changes.
File renamed without changes.
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
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