⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 aleserviceporttype.java

📁 rfid中间件开源源码logicalloy
💻 JAVA
字号:
package com.logicalloy.ale.client;import javax.jws.WebMethod;import javax.jws.WebParam;import javax.jws.WebResult;import javax.jws.WebService;import javax.jws.soap.SOAPBinding;import com.logicalloy.ale.GetALEIDDocument;import com.logicalloy.ale.GetALEIDResultDocument;import com.logicalloy.ale.LoginDocument;import com.logicalloy.ale.LoginResultDocument;import com.logicalloy.ale.SessionHeaderDocument;import epcglobalAleWsdl1.DefineDocument;import epcglobalAleWsdl1.GetECSpecDocument;import epcglobalAleWsdl1.GetECSpecNamesDocument;import epcglobalAleWsdl1.GetECSpecNamesResultDocument;import epcglobalAleWsdl1.GetECSpecResultDocument;import epcglobalAleWsdl1.GetStandardVersionDocument;import epcglobalAleWsdl1.GetStandardVersionResultDocument;import epcglobalAleWsdl1.GetSubscribersDocument;import epcglobalAleWsdl1.GetSubscribersResultDocument;import epcglobalAleWsdl1.GetVendorVersionDocument;import epcglobalAleWsdl1.GetVendorVersionResultDocument;import epcglobalAleWsdl1.ImmediateDocument;import epcglobalAleWsdl1.ImmediateResultDocument;import epcglobalAleWsdl1.PollDocument;import epcglobalAleWsdl1.PollResultDocument;import epcglobalAleWsdl1.SubscribeDocument;import epcglobalAleWsdl1.UndefineDocument;import epcglobalAleWsdl1.UnsubscribeDocument;import epcglobalAleWsdl1.VoidHolderDocument;@WebService(name = "ALEServicePortType", targetNamespace = "urn:epcglobal:ale:wsdl:1")@SOAPBinding(style = SOAPBinding.Style.DOCUMENT, use = SOAPBinding.Use.LITERAL, parameterStyle = SOAPBinding.ParameterStyle.BARE)public interface ALEServicePortType {    @WebMethod(operationName = "define", action = "")    @WebResult(name = "VoidHolder", targetNamespace = "urn:epcglobal:ale:wsdl:1")    public VoidHolderDocument define(        @WebParam(name = "Define", targetNamespace = "urn:epcglobal:ale:wsdl:1")        DefineDocument Define,        @WebParam(name = "SessionHeader", targetNamespace = "urn:ale.logicalloy.com", header = true)        SessionHeaderDocument SessionHeader)        throws DuplicateNameExceptionResponse, ECSpecValidationExceptionResponse, ImplementationExceptionResponse, SecurityExceptionResponse    ;    @WebMethod(operationName = "login", action = "")    @WebResult(name = "LoginResult", targetNamespace = "urn:ale.logicalloy.com")    public LoginResultDocument login(        @WebParam(name = "Login", targetNamespace = "urn:ale.logicalloy.com")        LoginDocument Login)        throws ImplementationExceptionResponse, SecurityExceptionResponse    ;    @WebMethod(operationName = "undefine", action = "")    @WebResult(name = "VoidHolder", targetNamespace = "urn:epcglobal:ale:wsdl:1")    public VoidHolderDocument undefine(        @WebParam(name = "Undefine", targetNamespace = "urn:epcglobal:ale:wsdl:1")        UndefineDocument Undefine,        @WebParam(name = "SessionHeader", targetNamespace = "urn:ale.logicalloy.com", header = true)        SessionHeaderDocument SessionHeader)        throws ImplementationExceptionResponse, NoSuchNameExceptionResponse, SecurityExceptionResponse    ;    @WebMethod(operationName = "getALEID", action = "")    @WebResult(name = "GetALEIDResult", targetNamespace = "urn:ale.logicalloy.com")    public GetALEIDResultDocument getALEID(        @WebParam(name = "GetALEID", targetNamespace = "urn:ale.logicalloy.com")        GetALEIDDocument GetALEID)        throws ImplementationExceptionResponse    ;    @WebMethod(operationName = "unsubscribe", action = "")    @WebResult(name = "VoidHolder", targetNamespace = "urn:epcglobal:ale:wsdl:1")    public VoidHolderDocument unsubscribe(        @WebParam(name = "Unsubscribe", targetNamespace = "urn:epcglobal:ale:wsdl:1")        UnsubscribeDocument Unsubscribe,        @WebParam(name = "SessionHeader", targetNamespace = "urn:ale.logicalloy.com", header = true)        SessionHeaderDocument SessionHeader)        throws ImplementationExceptionResponse, InvalidURIExceptionResponse, NoSuchNameExceptionResponse, NoSuchSubscriberExceptionResponse, SecurityExceptionResponse    ;    @WebMethod(operationName = "getStandardVersion", action = "")    @WebResult(name = "GetStandardVersionResult", targetNamespace = "urn:epcglobal:ale:wsdl:1")    public GetStandardVersionResultDocument getStandardVersion(        @WebParam(name = "GetStandardVersion", targetNamespace = "urn:epcglobal:ale:wsdl:1")        GetStandardVersionDocument GetStandardVersion)        throws ImplementationExceptionResponse    ;    @WebMethod(operationName = "getECSpec", action = "")    @WebResult(name = "GetECSpecResult", targetNamespace = "urn:epcglobal:ale:wsdl:1")    public GetECSpecResultDocument getECSpec(        @WebParam(name = "GetECSpec", targetNamespace = "urn:epcglobal:ale:wsdl:1")        GetECSpecDocument GetECSpec,        @WebParam(name = "SessionHeader", targetNamespace = "urn:ale.logicalloy.com", header = true)        SessionHeaderDocument SessionHeader)        throws ImplementationExceptionResponse, NoSuchNameExceptionResponse, SecurityExceptionResponse    ;    @WebMethod(operationName = "subscribe", action = "")    @WebResult(name = "VoidHolder", targetNamespace = "urn:epcglobal:ale:wsdl:1")    public VoidHolderDocument subscribe(        @WebParam(name = "Subscribe", targetNamespace = "urn:epcglobal:ale:wsdl:1")        SubscribeDocument Subscribe,        @WebParam(name = "SessionHeader", targetNamespace = "urn:ale.logicalloy.com", header = true)        SessionHeaderDocument SessionHeader)        throws DuplicateSubscriptionExceptionResponse, ImplementationExceptionResponse, InvalidURIExceptionResponse, NoSuchNameExceptionResponse, SecurityExceptionResponse    ;    @WebMethod(operationName = "immediate", action = "")    @WebResult(name = "ImmediateResult", targetNamespace = "urn:epcglobal:ale:wsdl:1")    public ImmediateResultDocument immediate(        @WebParam(name = "Immediate", targetNamespace = "urn:epcglobal:ale:wsdl:1")        ImmediateDocument Immediate,        @WebParam(name = "SessionHeader", targetNamespace = "urn:ale.logicalloy.com", header = true)        SessionHeaderDocument SessionHeader)        throws ECSpecValidationExceptionResponse, ImplementationExceptionResponse, SecurityExceptionResponse    ;    @WebMethod(operationName = "getSubscribers", action = "")    @WebResult(name = "GetSubscribersResult", targetNamespace = "urn:epcglobal:ale:wsdl:1")    public GetSubscribersResultDocument getSubscribers(        @WebParam(name = "GetSubscribers", targetNamespace = "urn:epcglobal:ale:wsdl:1")        GetSubscribersDocument GetSubscribers,        @WebParam(name = "SessionHeader", targetNamespace = "urn:ale.logicalloy.com", header = true)        SessionHeaderDocument SessionHeader)        throws ImplementationExceptionResponse, NoSuchNameExceptionResponse, SecurityExceptionResponse    ;    @WebMethod(operationName = "getVendorVersion", action = "")    @WebResult(name = "GetVendorVersionResult", targetNamespace = "urn:epcglobal:ale:wsdl:1")    public GetVendorVersionResultDocument getVendorVersion(        @WebParam(name = "GetVendorVersion", targetNamespace = "urn:epcglobal:ale:wsdl:1")        GetVendorVersionDocument GetVendorVersion)        throws ImplementationExceptionResponse    ;    @WebMethod(operationName = "getECSpecNames", action = "")    @WebResult(name = "GetECSpecNamesResult", targetNamespace = "urn:epcglobal:ale:wsdl:1")    public GetECSpecNamesResultDocument getECSpecNames(        @WebParam(name = "GetECSpecNames", targetNamespace = "urn:epcglobal:ale:wsdl:1")        GetECSpecNamesDocument GetECSpecNames,        @WebParam(name = "SessionHeader", targetNamespace = "urn:ale.logicalloy.com", header = true)        SessionHeaderDocument SessionHeader)        throws ImplementationExceptionResponse, SecurityExceptionResponse    ;    @WebMethod(operationName = "poll", action = "")    @WebResult(name = "PollResult", targetNamespace = "urn:epcglobal:ale:wsdl:1")    public PollResultDocument poll(        @WebParam(name = "Poll", targetNamespace = "urn:epcglobal:ale:wsdl:1")        PollDocument Poll,        @WebParam(name = "SessionHeader", targetNamespace = "urn:ale.logicalloy.com", header = true)        SessionHeaderDocument SessionHeader)        throws ImplementationExceptionResponse, NoSuchNameExceptionResponse, SecurityExceptionResponse    ;}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -