001    
002    /*
003     * 
004     */
005    
006    package org.oasis_open.docs.wsn.bw_2;
007    
008    import javax.jws.WebMethod;
009    import javax.jws.WebParam;
010    import javax.jws.WebResult;
011    import javax.jws.WebService;
012    import javax.jws.soap.SOAPBinding;
013    import javax.jws.soap.SOAPBinding.ParameterStyle;
014    import javax.xml.bind.annotation.XmlSeeAlso;
015    
016    /**
017     * This class was generated by IONA FUSE Services Framework 2.1.0.0-fuse
018     * Fri Sep 19 12:58:55 NDT 2008
019     * Generated source version: 2.1.0.0-fuse
020     * 
021     */
022     
023     /*
024      * 
025      */
026    
027    
028    @WebService(targetNamespace = "http://docs.oasis-open.org/wsn/bw-2", name = "SubscriptionManager")
029    @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})
030    @SOAPBinding(parameterStyle = SOAPBinding.ParameterStyle.BARE)
031    
032    public interface SubscriptionManager {
033    
034    /*
035     * 
036     */
037    
038        @SOAPBinding(parameterStyle = SOAPBinding.ParameterStyle.BARE)
039        @WebResult(name = "RenewResponse", targetNamespace = "http://docs.oasis-open.org/wsn/b-2", partName = "RenewResponse")
040        @WebMethod(operationName = "Renew")
041        public org.oasis_open.docs.wsn.b_2.RenewResponse renew(
042            @WebParam(partName = "RenewRequest", name = "Renew", targetNamespace = "http://docs.oasis-open.org/wsn/b-2")
043            org.oasis_open.docs.wsn.b_2.Renew renewRequest
044        ) throws UnacceptableTerminationTimeFault, org.oasis_open.docs.wsrf.rw_2.ResourceUnknownFault;
045    
046    /*
047     * 
048     */
049    
050        @SOAPBinding(parameterStyle = SOAPBinding.ParameterStyle.BARE)
051        @WebResult(name = "UnsubscribeResponse", targetNamespace = "http://docs.oasis-open.org/wsn/b-2", partName = "UnsubscribeResponse")
052        @WebMethod(operationName = "Unsubscribe")
053        public org.oasis_open.docs.wsn.b_2.UnsubscribeResponse unsubscribe(
054            @WebParam(partName = "UnsubscribeRequest", name = "Unsubscribe", targetNamespace = "http://docs.oasis-open.org/wsn/b-2")
055            org.oasis_open.docs.wsn.b_2.Unsubscribe unsubscribeRequest
056        ) throws UnableToDestroySubscriptionFault, org.oasis_open.docs.wsrf.rw_2.ResourceUnknownFault;
057    }