/* * Copyright (c) 1990-2012 kopiLeft Development SARL, Bizerte, Tunisia * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License version 2.1 as published by the Free Software Foundation. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * * $Id$ */ package org.kopi.ebics.xml; import org.kopi.ebics.exception.EbicsException; import org.kopi.ebics.exception.ReturnCode; import org.kopi.ebics.interfaces.ContentFactory; import org.kopi.ebics.schema.h003.EbicsResponseDocument; import org.kopi.ebics.schema.h003.EbicsResponseDocument.EbicsResponse; /** * The <code>TransferResponseElement</code> is the common element * response for all ebics transfers. * * @author Hachani * */ public class TransferResponseElement extends DefaultResponseElement { /** * Constructs a new <code>TransferResponseElement</code> element. * @param factory the content factory * @param orderType the order type * @param name the element name; */ public TransferResponseElement(ContentFactory factory, String name) { super(factory, name); } @Override public void build() throws EbicsException { String code; String text; parse(factory); response = ((EbicsResponseDocument)document).getEbicsResponse(); code = response.getHeader().getMutable().getReturnCode(); text = response.getHeader().getMutable().getReportText(); returnCode = ReturnCode.toReturnCode(code, text); report(); } // -------------------------------------------------------------------- // DATA MEMBERS // -------------------------------------------------------------------- protected EbicsResponse response; private static final long serialVersionUID = 7454118286687793155L; }