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.xml.bind.annotation.XmlSeeAlso;
009
010 /**
011 * This class was generated by Progress FUSE Services Framework 2.2.11-fuse-00-00
012 * Wed Nov 24 09:09:35 GMT 2010
013 * Generated source version: 2.2.11-fuse-00-00
014 *
015 */
016
017 @WebService(targetNamespace = "http://docs.oasis-open.org/wsn/bw-2", name = "PausableSubscriptionManager")
018 @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})
019 @SOAPBinding(parameterStyle = SOAPBinding.ParameterStyle.BARE)
020 public interface PausableSubscriptionManager {
021
022 @WebResult(name = "RenewResponse", targetNamespace = "http://docs.oasis-open.org/wsn/b-2", partName = "RenewResponse")
023 @WebMethod(operationName = "Renew")
024 public org.oasis_open.docs.wsn.b_2.RenewResponse renew(
025 @WebParam(partName = "RenewRequest", name = "Renew", targetNamespace = "http://docs.oasis-open.org/wsn/b-2")
026 org.oasis_open.docs.wsn.b_2.Renew renewRequest
027 ) throws UnacceptableTerminationTimeFault, org.oasis_open.docs.wsrf.rw_2.ResourceUnknownFault;
028
029 @WebResult(name = "UnsubscribeResponse", targetNamespace = "http://docs.oasis-open.org/wsn/b-2", partName = "UnsubscribeResponse")
030 @WebMethod(operationName = "Unsubscribe")
031 public org.oasis_open.docs.wsn.b_2.UnsubscribeResponse unsubscribe(
032 @WebParam(partName = "UnsubscribeRequest", name = "Unsubscribe", targetNamespace = "http://docs.oasis-open.org/wsn/b-2")
033 org.oasis_open.docs.wsn.b_2.Unsubscribe unsubscribeRequest
034 ) throws UnableToDestroySubscriptionFault, org.oasis_open.docs.wsrf.rw_2.ResourceUnknownFault;
035
036 @WebResult(name = "PauseSubscriptionResponse", targetNamespace = "http://docs.oasis-open.org/wsn/b-2", partName = "PauseSubscriptionResponse")
037 @WebMethod(operationName = "PauseSubscription")
038 public org.oasis_open.docs.wsn.b_2.PauseSubscriptionResponse pauseSubscription(
039 @WebParam(partName = "PauseSubscriptionRequest", name = "PauseSubscription", targetNamespace = "http://docs.oasis-open.org/wsn/b-2")
040 org.oasis_open.docs.wsn.b_2.PauseSubscription pauseSubscriptionRequest
041 ) throws org.oasis_open.docs.wsrf.rw_2.ResourceUnknownFault, PauseFailedFault;
042
043 @WebResult(name = "ResumeSubscriptionResponse", targetNamespace = "http://docs.oasis-open.org/wsn/b-2", partName = "ResumeSubscriptionResponse")
044 @WebMethod(operationName = "ResumeSubscription")
045 public org.oasis_open.docs.wsn.b_2.ResumeSubscriptionResponse resumeSubscription(
046 @WebParam(partName = "ResumeSubscriptionRequest", name = "ResumeSubscription", targetNamespace = "http://docs.oasis-open.org/wsn/b-2")
047 org.oasis_open.docs.wsn.b_2.ResumeSubscription resumeSubscriptionRequest
048 ) throws org.oasis_open.docs.wsrf.rw_2.ResourceUnknownFault, ResumeFailedFault;
049 }