@Override public final Document getDocumentFragment() throws WsnbException { return RefinedWsnbFactory.getInstance() .getWsnbWriter() .writeNotifyMessageNotSupportedFaultTypeAsDOM( (NotifyMessageNotSupportedFaultType) this.wsnFault); }
public NotifyMessageNotSupportedFault(Locale lang, String descr) throws WsnbException, WsrfbfException { super(); this.wsnFault = RefinedWsnbFactory.getInstance().createNotifyMessageNotSupportedFaultType(new Date()); this.init(lang, descr); }
public NotifyMessageNotSupportedFault(Document faultAsDocument) throws WsnbException, WsrfbfException { super(); this.wsnFault = RefinedWsnbFactory.getInstance() .getWsnbReader() .readNotifyMessageNotSupportedFaultType(faultAsDocument); this.init(); }