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 = "PausableSubscriptionManager")
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 PausableSubscriptionManager {
022
023 @WebResult(name = "RenewResponse", targetNamespace = "http://docs.oasis-open.org/wsn/b-2", partName = "RenewResponse")
024 @WebMethod(operationName = "Renew")
025 public org.oasis_open.docs.wsn.b_2.RenewResponse renew(
026 @WebParam(partName = "RenewRequest", name = "Renew", targetNamespace = "http://docs.oasis-open.org/wsn/b-2")
027 org.oasis_open.docs.wsn.b_2.Renew renewRequest
028 ) throws UnacceptableTerminationTimeFault, org.oasis_open.docs.wsrf.rw_2.ResourceUnknownFault;
029
030 @WebResult(name = "UnsubscribeResponse", targetNamespace = "http://docs.oasis-open.org/wsn/b-2", partName = "UnsubscribeResponse")
031 @WebMethod(operationName = "Unsubscribe")
032 public org.oasis_open.docs.wsn.b_2.UnsubscribeResponse unsubscribe(
033 @WebParam(partName = "UnsubscribeRequest", name = "Unsubscribe", targetNamespace = "http://docs.oasis-open.org/wsn/b-2")
034 org.oasis_open.docs.wsn.b_2.Unsubscribe unsubscribeRequest
035 ) throws UnableToDestroySubscriptionFault, org.oasis_open.docs.wsrf.rw_2.ResourceUnknownFault;
036
037 @WebResult(name = "PauseSubscriptionResponse", targetNamespace = "http://docs.oasis-open.org/wsn/b-2", partName = "PauseSubscriptionResponse")
038 @WebMethod(operationName = "PauseSubscription")
039 public org.oasis_open.docs.wsn.b_2.PauseSubscriptionResponse pauseSubscription(
040 @WebParam(partName = "PauseSubscriptionRequest", name = "PauseSubscription", targetNamespace = "http://docs.oasis-open.org/wsn/b-2")
041 org.oasis_open.docs.wsn.b_2.PauseSubscription pauseSubscriptionRequest
042 ) throws org.oasis_open.docs.wsrf.rw_2.ResourceUnknownFault, PauseFailedFault;
043
044 @WebResult(name = "ResumeSubscriptionResponse", targetNamespace = "http://docs.oasis-open.org/wsn/b-2", partName = "ResumeSubscriptionResponse")
045 @WebMethod(operationName = "ResumeSubscription")
046 public org.oasis_open.docs.wsn.b_2.ResumeSubscriptionResponse resumeSubscription(
047 @WebParam(partName = "ResumeSubscriptionRequest", name = "ResumeSubscription", targetNamespace = "http://docs.oasis-open.org/wsn/b-2")
048 org.oasis_open.docs.wsn.b_2.ResumeSubscription resumeSubscriptionRequest
049 ) throws org.oasis_open.docs.wsrf.rw_2.ResourceUnknownFault, ResumeFailedFault;
050 }