Subversion Repositories XServices

Rev

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

Rev 85 Rev 87
Line 20... Line 20...
20
import javax.jws.WebService;
20
import javax.jws.WebService;
21
import net.brutex.xservices.types.HostConnection;
21
import net.brutex.xservices.types.HostConnection;
22
import net.brutex.xservices.types.HostinfoType;
22
import net.brutex.xservices.types.HostinfoType;
23
import net.brutex.xservices.types.MailMimeType;
23
import net.brutex.xservices.types.MailMimeType;
24
import net.brutex.xservices.types.ReturnCode;
24
import net.brutex.xservices.types.ReturnCode;
-
 
25
import net.brutex.xservices.types.RuntimeInfoType;
25
import net.brutex.xservices.types.ant.FileSetResource;
26
import net.brutex.xservices.types.ant.FileSetResource;
26
import net.brutex.xservices.util.BrutexNamespaces;
27
import net.brutex.xservices.util.BrutexNamespaces;
Line 27... Line 28...
27
 
28
 
28
import org.apache.cxf.aegis.type.java5.XmlElement;
29
import org.apache.cxf.aegis.type.java5.XmlElement;
Line 36... Line 37...
36
 * @since 0.4.0
37
 * @since 0.4.0
37
 */
38
 */
38
@WebService(targetNamespace = BrutexNamespaces.WS_XSERVICES)
39
@WebService(targetNamespace = BrutexNamespaces.WS_XSERVICES)
39
@WSDLDocumentation("Various service operations.")
40
@WSDLDocumentation("Various service operations.")
40
public interface MiscService {
41
public interface MiscService {
-
 
42
	
-
 
43
	public static final String OPERATION_GETMEMORY = "getMemory";
Line 41... Line 44...
41
 
44
 
42
	/**
45
	/**
43
	 * Get IP address from host name.
46
	 * Get IP address from host name.
44
	 * 
47
	 * 
Line 78... Line 81...
78
     */
81
     */
79
    @WebMethod(operationName = "generateUUID")
82
    @WebMethod(operationName = "generateUUID")
80
    @WSDLDocumentation(value = "Generate a UUID.")
83
    @WSDLDocumentation(value = "Generate a UUID.")
81
    public String generateUUID();
84
    public String generateUUID();
Line -... Line 85...
-
 
85
    
-
 
86
    /**
-
 
87
     * Get Memory information
-
 
88
     */
-
 
89
    @WebMethod(operationName = MiscService.OPERATION_GETMEMORY)
-
 
90
    @WSDLDocumentation(value = "Get memory and processor information")
-
 
91
    public RuntimeInfoType getMemory();
82
    
92