Subversion Repositories XServices

Rev

Rev 54 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 54 Rev 72
Line 36... Line 36...
36
 
36
 
37
/**
37
/**
38
 * 
38
 * 
39
 * @author Brian Rosenberger, bru@brutex.de
39
 * @author Brian Rosenberger, bru@brutex.de
40
 */
-
 
41
@WSDLDocumentationCollection({
-
 
42
		@WSDLDocumentation("My portType documentation"),
-
 
43
		@WSDLDocumentation(value = "My top level documentation", placement = WSDLDocumentation.Placement.TOP),
-
 
44
		@WSDLDocumentation(value = "My binding doc", placement = WSDLDocumentation.Placement.BINDING) })
40
 */
45
@WebService(
41
@WebService(
46
		targetNamespace = BrutexNamespaces.WS_XSERVICES, 
42
		targetNamespace = BrutexNamespaces.WS_XSERVICES, 
47
		endpointInterface = "net.brutex.xservices.ws.MiscService", 
43
		endpointInterface = "net.brutex.xservices.ws.MiscService", 
48
		serviceName = "MiscService"
44
		serviceName = "MiscService"
49
			)
45
			)
Line 50... Line -...
50
public class MiscServiceImpl implements MiscService {
-
 
51
 
46
public class MiscServiceImpl implements MiscService {
52
	@WSDLDocumentation(value = "Get information about a host.")
47
 
53
	public ReturnCode getHostinfo(String hostname) {
48
	public ReturnCode getHostinfo(String hostname) {
Line 54... Line -...
54
		return antGetHostinfo(hostname, null);
-
 
55
	}
49
		return antGetHostinfo(hostname, null);
56
	
50
	}
57
	@WSDLDocumentation(value = "Get XService information.")
51
	
58
	public ReturnCode getInfo() {
52
	public ReturnCode getInfo() {
59
		ReturnCode r = new ReturnCode();
53
		ReturnCode r = new ReturnCode();