001    
002    /*
003     * 
004     */
005    
006    package org.oasis_open.docs.wsn.bw_2;
007    
008    import javax.jws.Oneway;
009    import javax.jws.WebMethod;
010    import javax.jws.WebParam;
011    import javax.jws.WebResult;
012    import javax.jws.WebService;
013    import javax.jws.soap.SOAPBinding;
014    import javax.jws.soap.SOAPBinding.ParameterStyle;
015    import javax.xml.bind.annotation.XmlSeeAlso;
016    
017    /**
018     * This class was generated by IONA FUSE Services Framework 2.1.0.0-fuse
019     * Fri Sep 19 12:58:56 NDT 2008
020     * Generated source version: 2.1.0.0-fuse
021     * 
022     */
023     
024     /*
025      * 
026      */
027    
028    
029    @WebService(targetNamespace = "http://docs.oasis-open.org/wsn/bw-2", name = "PullPoint")
030    @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})
031    @SOAPBinding(parameterStyle = SOAPBinding.ParameterStyle.BARE)
032    
033    public interface PullPoint {
034    
035    /*
036     * 
037     */
038    
039        @SOAPBinding(parameterStyle = SOAPBinding.ParameterStyle.BARE)
040        @WebResult(name = "DestroyPullPointResponse", targetNamespace = "http://docs.oasis-open.org/wsn/b-2", partName = "DestroyPullPointResponse")
041        @WebMethod(operationName = "DestroyPullPoint")
042        public org.oasis_open.docs.wsn.b_2.DestroyPullPointResponse destroyPullPoint(
043            @WebParam(partName = "DestroyPullPointRequest", name = "DestroyPullPoint", targetNamespace = "http://docs.oasis-open.org/wsn/b-2")
044            org.oasis_open.docs.wsn.b_2.DestroyPullPoint destroyPullPointRequest
045        ) throws UnableToDestroyPullPointFault, org.oasis_open.docs.wsrf.rw_2.ResourceUnknownFault;
046    
047    /*
048     * 
049     */
050    
051        @SOAPBinding(parameterStyle = SOAPBinding.ParameterStyle.BARE)
052        @Oneway
053        @WebMethod(operationName = "Notify")
054        public void notify(
055            @WebParam(partName = "Notify", name = "Notify", targetNamespace = "http://docs.oasis-open.org/wsn/b-2")
056            org.oasis_open.docs.wsn.b_2.Notify notify
057        );
058    
059    /*
060     * 
061     */
062    
063        @SOAPBinding(parameterStyle = SOAPBinding.ParameterStyle.BARE)
064        @WebResult(name = "GetMessagesResponse", targetNamespace = "http://docs.oasis-open.org/wsn/b-2", partName = "GetMessagesResponse")
065        @WebMethod(operationName = "GetMessages")
066        public org.oasis_open.docs.wsn.b_2.GetMessagesResponse getMessages(
067            @WebParam(partName = "GetMessagesRequest", name = "GetMessages", targetNamespace = "http://docs.oasis-open.org/wsn/b-2")
068            org.oasis_open.docs.wsn.b_2.GetMessages getMessagesRequest
069        ) throws UnableToGetMessagesFault, org.oasis_open.docs.wsrf.rw_2.ResourceUnknownFault;
070    }