001    package org.oasis_open.docs.wsn.brw_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 Apache CXF 2.2.0.0-fuse
013     * Tue May 05 21:33:18 EDT 2009
014     * Generated source version: 2.2.0.0-fuse
015     * 
016     */
017     
018    @WebService(targetNamespace = "http://docs.oasis-open.org/wsn/brw-2", name = "PublisherRegistrationManager")
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 PublisherRegistrationManager {
022    
023        @WebResult(name = "DestroyRegistrationResponse", targetNamespace = "http://docs.oasis-open.org/wsn/br-2", partName = "DestroyRegistrationResponse")
024        @WebMethod(operationName = "DestroyRegistration")
025        public org.oasis_open.docs.wsn.br_2.DestroyRegistrationResponse destroyRegistration(
026            @WebParam(partName = "DestroyRegistrationRequest", name = "DestroyRegistration", targetNamespace = "http://docs.oasis-open.org/wsn/br-2")
027            org.oasis_open.docs.wsn.br_2.DestroyRegistration destroyRegistrationRequest
028        ) throws org.oasis_open.docs.wsrf.rw_2.ResourceUnknownFault, ResourceNotDestroyedFault;
029    }