use of org.oasis_open.docs.wsn.b_2.UnableToDestroySubscriptionFaultType in project cxf by apache.
the class JmsSubscription method unsubscribe.
@Override
protected void unsubscribe() throws UnableToDestroySubscriptionFault {
super.unsubscribe();
if (session != null) {
try {
session.close();
checkTermination = false;
} catch (JMSException e) {
UnableToDestroySubscriptionFaultType fault = new UnableToDestroySubscriptionFaultType();
throw new UnableToDestroySubscriptionFault("Unable to unsubscribe", fault, e);
} finally {
session = null;
}
}
}
Aggregations