Removed unused annotation from WS interface
This commit is contained in:
parent
2f9bc7cfb3
commit
2227843c2b
2 changed files with 4 additions and 13 deletions
|
|
@ -112,15 +112,6 @@ public interface WSInterface {
|
||||||
String value();
|
String value();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Parameter comments for the WSDL.
|
|
||||||
* These comments are put in the message part of the WSDL
|
|
||||||
*/
|
|
||||||
@Retention(RetentionPolicy.RUNTIME)
|
|
||||||
@interface WSParamDocumentation {
|
|
||||||
String value();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* This method will be used in the SOAP header.
|
* This method will be used in the SOAP header.
|
||||||
*/
|
*/
|
||||||
|
|
|
||||||
|
|
@ -99,7 +99,7 @@ public class SOAPTest {
|
||||||
}
|
}
|
||||||
|
|
||||||
@WSReturnName("stringArray")
|
@WSReturnName("stringArray")
|
||||||
@WSParamDocumentation("Documentation of stringArrayMethod()")
|
@WSDocumentation("Documentation of stringArrayMethod()")
|
||||||
public String[][] stringArrayMethod (
|
public String[][] stringArrayMethod (
|
||||||
@WSParamName("StringName") String str) {
|
@WSParamName("StringName") String str) {
|
||||||
System.out.println("Executing method: stringArrayMethod(String str='"+str+"')");
|
System.out.println("Executing method: stringArrayMethod(String str='"+str+"')");
|
||||||
|
|
@ -107,7 +107,7 @@ public class SOAPTest {
|
||||||
}
|
}
|
||||||
|
|
||||||
@WSReturnName("specialReturnClass")
|
@WSReturnName("specialReturnClass")
|
||||||
@WSParamDocumentation("Documentation of specialReturnMethod()")
|
@WSDocumentation("Documentation of specialReturnMethod()")
|
||||||
public SpecialReturnClass[] specialReturnMethod (
|
public SpecialReturnClass[] specialReturnMethod (
|
||||||
@WSParamName("StringName2") String str) {
|
@WSParamName("StringName2") String str) {
|
||||||
System.out.println("Executing method: specialReturnMethod(String str='"+str+"')");
|
System.out.println("Executing method: specialReturnMethod(String str='"+str+"')");
|
||||||
|
|
@ -115,7 +115,7 @@ public class SOAPTest {
|
||||||
}
|
}
|
||||||
|
|
||||||
@WSReturnName("SimpleReturnClass")
|
@WSReturnName("SimpleReturnClass")
|
||||||
@WSParamDocumentation("null is the kala")
|
@WSDocumentation("null is the kala")
|
||||||
public SimpleReturnClass simpleReturnClassMethod (
|
public SimpleReturnClass simpleReturnClassMethod (
|
||||||
@WSParamName("byte") String lol) {
|
@WSParamName("byte") String lol) {
|
||||||
System.out.println("Executing method: simpleReturnClassMethod()");
|
System.out.println("Executing method: simpleReturnClassMethod()");
|
||||||
|
|
@ -125,7 +125,7 @@ public class SOAPTest {
|
||||||
return tmp;
|
return tmp;
|
||||||
}
|
}
|
||||||
|
|
||||||
@WSParamDocumentation("void method documentation")
|
@WSDocumentation("void method documentation")
|
||||||
public void voidMethod (){ }
|
public void voidMethod (){ }
|
||||||
|
|
||||||
@WSIgnore()
|
@WSIgnore()
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue