001    package org.oasis_open.docs.wsn.bw_2;
002    
003    import javax.jws.WebMethod;
004    import javax.jws.WebParam;
005    import javax.jws.WebResult;
006    import javax.jws.WebService;
007    import javax.jws.soap.SOAPBinding;
008    import javax.jws.soap.SOAPBinding.ParameterStyle;
009    import javax.xml.bind.annotation.XmlSeeAlso;
010    
011    /**
012     * This class was generated by IONA FUSE Services Framework 2.1.2.1-fuse
013     * Thu Oct 09 22:15:46 EDT 2008
014     * Generated source version: 2.1.2.1-fuse
015     * 
016     */
017     
018    @WebService(targetNamespace = "http://docs.oasis-open.org/wsn/bw-2", name = "CreatePullPoint")
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 CreatePullPoint {
022    
023        @WebResult(name = "CreatePullPointResponse", targetNamespace = "http://docs.oasis-open.org/wsn/b-2", partName = "CreatePullPointResponse")
024        @WebMethod(operationName = "CreatePullPoint")
025        public org.oasis_open.docs.wsn.b_2.CreatePullPointResponse createPullPoint(
026            @WebParam(partName = "CreatePullPointRequest", name = "CreatePullPoint", targetNamespace = "http://docs.oasis-open.org/wsn/b-2")
027            org.oasis_open.docs.wsn.b_2.CreatePullPoint createPullPointRequest
028        ) throws UnableToCreatePullPointFault;
029    }