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.jws.soap.SOAPBinding.ParameterStyle;
010    import javax.xml.bind.annotation.XmlSeeAlso;
011    
012    /**
013     * This class was generated by Apache CXF 2.2.0.0-fuse
014     * Tue May 05 21:33:19 EDT 2009
015     * Generated source version: 2.2.0.0-fuse
016     * 
017     */
018     
019    @WebService(targetNamespace = "http://docs.oasis-open.org/wsn/bw-2", name = "PullPoint")
020    @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})
021    @SOAPBinding(parameterStyle = SOAPBinding.ParameterStyle.BARE)
022    public interface PullPoint {
023    
024        @WebResult(name = "DestroyPullPointResponse", targetNamespace = "http://docs.oasis-open.org/wsn/b-2", partName = "DestroyPullPointResponse")
025        @WebMethod(operationName = "DestroyPullPoint")
026        public org.oasis_open.docs.wsn.b_2.DestroyPullPointResponse destroyPullPoint(
027            @WebParam(partName = "DestroyPullPointRequest", name = "DestroyPullPoint", targetNamespace = "http://docs.oasis-open.org/wsn/b-2")
028            org.oasis_open.docs.wsn.b_2.DestroyPullPoint destroyPullPointRequest
029        ) throws UnableToDestroyPullPointFault, org.oasis_open.docs.wsrf.rw_2.ResourceUnknownFault;
030    
031        @Oneway
032        @WebMethod(operationName = "Notify")
033        public void notify(
034            @WebParam(partName = "Notify", name = "Notify", targetNamespace = "http://docs.oasis-open.org/wsn/b-2")
035            org.oasis_open.docs.wsn.b_2.Notify notify
036        );
037    
038        @WebResult(name = "GetMessagesResponse", targetNamespace = "http://docs.oasis-open.org/wsn/b-2", partName = "GetMessagesResponse")
039        @WebMethod(operationName = "GetMessages")
040        public org.oasis_open.docs.wsn.b_2.GetMessagesResponse getMessages(
041            @WebParam(partName = "GetMessagesRequest", name = "GetMessages", targetNamespace = "http://docs.oasis-open.org/wsn/b-2")
042            org.oasis_open.docs.wsn.b_2.GetMessages getMessagesRequest
043        ) throws UnableToGetMessagesFault, org.oasis_open.docs.wsrf.rw_2.ResourceUnknownFault;
044    }