📄 aleserviceimpl.java
字号:
package com.logicalloy.ale.client;import javax.jws.WebService;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(serviceName = "ALEService", targetNamespace = "urn:epcglobal:ale:wsdl:1", endpointInterface = "com.logicalloy.ale.client.ALEServicePortType")public class ALEServiceImpl implements ALEServicePortType{ public VoidHolderDocument define(DefineDocument Define, SessionHeaderDocument SessionHeader) throws DuplicateNameExceptionResponse, ECSpecValidationExceptionResponse, ImplementationExceptionResponse, SecurityExceptionResponse { throw new UnsupportedOperationException(); } public LoginResultDocument login(LoginDocument Login) throws ImplementationExceptionResponse, SecurityExceptionResponse { throw new UnsupportedOperationException(); } public VoidHolderDocument undefine(UndefineDocument Undefine, SessionHeaderDocument SessionHeader) throws ImplementationExceptionResponse, NoSuchNameExceptionResponse, SecurityExceptionResponse { throw new UnsupportedOperationException(); } public GetALEIDResultDocument getALEID(GetALEIDDocument GetALEID) throws ImplementationExceptionResponse { throw new UnsupportedOperationException(); } public VoidHolderDocument unsubscribe(UnsubscribeDocument Unsubscribe, SessionHeaderDocument SessionHeader) throws ImplementationExceptionResponse, InvalidURIExceptionResponse, NoSuchNameExceptionResponse, NoSuchSubscriberExceptionResponse, SecurityExceptionResponse { throw new UnsupportedOperationException(); } public GetStandardVersionResultDocument getStandardVersion(GetStandardVersionDocument GetStandardVersion) throws ImplementationExceptionResponse { throw new UnsupportedOperationException(); } public GetECSpecResultDocument getECSpec(GetECSpecDocument GetECSpec, SessionHeaderDocument SessionHeader) throws ImplementationExceptionResponse, NoSuchNameExceptionResponse, SecurityExceptionResponse { throw new UnsupportedOperationException(); } public VoidHolderDocument subscribe(SubscribeDocument Subscribe, SessionHeaderDocument SessionHeader) throws DuplicateSubscriptionExceptionResponse, ImplementationExceptionResponse, InvalidURIExceptionResponse, NoSuchNameExceptionResponse, SecurityExceptionResponse { throw new UnsupportedOperationException(); } public ImmediateResultDocument immediate(ImmediateDocument Immediate, SessionHeaderDocument SessionHeader) throws ECSpecValidationExceptionResponse, ImplementationExceptionResponse, SecurityExceptionResponse { throw new UnsupportedOperationException(); } public GetSubscribersResultDocument getSubscribers(GetSubscribersDocument GetSubscribers, SessionHeaderDocument SessionHeader) throws ImplementationExceptionResponse, NoSuchNameExceptionResponse, SecurityExceptionResponse { throw new UnsupportedOperationException(); } public GetVendorVersionResultDocument getVendorVersion(GetVendorVersionDocument GetVendorVersion) throws ImplementationExceptionResponse { throw new UnsupportedOperationException(); } public GetECSpecNamesResultDocument getECSpecNames(GetECSpecNamesDocument GetECSpecNames, SessionHeaderDocument SessionHeader) throws ImplementationExceptionResponse, SecurityExceptionResponse { throw new UnsupportedOperationException(); } public PollResultDocument poll(PollDocument Poll, SessionHeaderDocument SessionHeader) throws ImplementationExceptionResponse, NoSuchNameExceptionResponse, SecurityExceptionResponse { throw new UnsupportedOperationException(); }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -