001 package org.oasis_open.docs.wsn.bw_2;
002
003 import javax.jws.Oneway;
004 import javax.jws.WebMethod;
005 import javax.jws.WebParam;
006 import javax.jws.WebResult;
007 import javax.jws.WebService;
008 import javax.jws.soap.SOAPBinding;
009 import javax.xml.bind.annotation.XmlSeeAlso;
010
011 /**
012 * This class was generated by Progress FUSE Services Framework 2.2.11-fuse-00-00
013 * Wed Nov 24 09:09:35 GMT 2010
014 * Generated source version: 2.2.11-fuse-00-00
015 *
016 */
017
018 @WebService(targetNamespace = "http://docs.oasis-open.org/wsn/bw-2", name = "PullPoint")
019 @XmlSeeAlso({org.oasis_open.docs.wsn.br_2.ObjectFactory.class, org.oasis_open.docs.wsrf.rp_2.ObjectFactory.class, org.oasis_open.docs.wsrf.bf_2.ObjectFactory.class, org.oasis_open.docs.wsrf.r_2.ObjectFactory.class, org.oasis_open.docs.wsn.t_1.ObjectFactory.class, org.oasis_open.docs.wsn.b_2.ObjectFactory.class})
020 @SOAPBinding(parameterStyle = SOAPBinding.ParameterStyle.BARE)
021 public interface PullPoint {
022
023 @WebResult(name = "DestroyPullPointResponse", targetNamespace = "http://docs.oasis-open.org/wsn/b-2", partName = "DestroyPullPointResponse")
024 @WebMethod(operationName = "DestroyPullPoint")
025 public org.oasis_open.docs.wsn.b_2.DestroyPullPointResponse destroyPullPoint(
026 @WebParam(partName = "DestroyPullPointRequest", name = "DestroyPullPoint", targetNamespace = "http://docs.oasis-open.org/wsn/b-2")
027 org.oasis_open.docs.wsn.b_2.DestroyPullPoint destroyPullPointRequest
028 ) throws UnableToDestroyPullPointFault, org.oasis_open.docs.wsrf.rw_2.ResourceUnknownFault;
029
030 @Oneway
031 @WebMethod(operationName = "Notify")
032 public void notify(
033 @WebParam(partName = "Notify", name = "Notify", targetNamespace = "http://docs.oasis-open.org/wsn/b-2")
034 org.oasis_open.docs.wsn.b_2.Notify notify
035 );
036
037 @WebResult(name = "GetMessagesResponse", targetNamespace = "http://docs.oasis-open.org/wsn/b-2", partName = "GetMessagesResponse")
038 @WebMethod(operationName = "GetMessages")
039 public org.oasis_open.docs.wsn.b_2.GetMessagesResponse getMessages(
040 @WebParam(partName = "GetMessagesRequest", name = "GetMessages", targetNamespace = "http://docs.oasis-open.org/wsn/b-2")
041 org.oasis_open.docs.wsn.b_2.GetMessages getMessagesRequest
042 ) throws UnableToGetMessagesFault, org.oasis_open.docs.wsrf.rw_2.ResourceUnknownFault;
043 }