/* * Copyright 2003 Federal Chancellery Austria * MOA-SPSS has been developed in a cooperation between BRZ, the Federal * Chancellery Austria - ICT staff unit, and Graz University of Technology. * * Licensed under the EUPL, Version 1.1 or - as soon they will be approved by * the European Commission - subsequent versions of the EUPL (the "Licence"); * You may not use this work except in compliance with the Licence. * You may obtain a copy of the Licence at: * http://www.osor.eu/eupl/ * * Unless required by applicable law or agreed to in writing, software * distributed under the Licence is distributed on an "AS IS" basis, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the Licence for the specific language governing permissions and * limitations under the Licence. * * This product combines work with different licenses. See the "NOTICE" text * file for details on the various modules and licenses. * The "NOTICE" text file is part of the distribution. Any derivative works * that you distribute must include a readable copy of the "NOTICE" text file. */ package at.gv.egovernment.moa.spss.api.xmlbind; import java.io.IOException; import java.util.Iterator; import javax.xml.transform.TransformerException; import org.w3c.dom.Document; import org.w3c.dom.Element; import at.gv.egovernment.moa.spss.MOASystemException; import at.gv.egovernment.moa.spss.api.cmssign.CMSSignatureResponse; import at.gv.egovernment.moa.spss.api.cmssign.CreateCMSSignatureResponse; import at.gv.egovernment.moa.spss.api.cmssign.CreateCMSSignatureResponseElement; import at.gv.egovernment.moa.spss.api.xmlsign.ErrorResponse; import at.gv.egovernment.moa.spss.api.xmlsign.SignatureEnvironmentResponse; import at.gv.egovernment.moaspss.util.Constants; import at.gv.egovernment.moaspss.util.DOMUtils; /** * Convert a CreateCMSSignatureResponse API object into its * XML representation, according to the MOA XML schema. * * @version $Id$ */ public class CreateCMSSignatureResponseBuilder { private static final String MOA_NS_URI = Constants.MOA_NS_URI; /** The XML document containing the response element. */ private Document responseDoc; /** The response CreateCMSSignatureResponse DOM element. */ private Element responseElem; /** * Create a new CreateCMSSignatureResponseBuilder: * * @throws MOASystemException An error occurred setting up the resulting * XML document. */ public CreateCMSSignatureResponseBuilder() throws MOASystemException { responseDoc = ResponseBuilderUtils.createResponse("CreateCMSSignatureResponse"); responseElem = responseDoc.getDocumentElement(); } /** * Build a document containing a CreateCMSSignatureResponse * DOM element being the XML representation of the given * CreateCMSSignatureResponse API object. * * @param response The CreateCMSSignatureResponse to convert * to XML. * @return A document containing the CreateCMSSignatureResponse * DOM element. */ public Document build(CreateCMSSignatureResponse response) { Iterator iter; for (iter = response.getResponseElements().iterator(); iter.hasNext();) { CreateCMSSignatureResponseElement responseElement = (CreateCMSSignatureResponseElement) iter.next(); switch (responseElement.getResponseType()) { case CreateCMSSignatureResponseElement.CMS_SIGNATURE : CMSSignatureResponse cmsSignatureResponse = (CMSSignatureResponse) responseElement; addCMSSignature(cmsSignatureResponse); break; case CreateCMSSignatureResponseElement.ERROR_RESPONSE : ErrorResponse errorResponse = (ErrorResponse) responseElement; addErrorResponse(errorResponse); break; } } return responseDoc; } /** * Add a CMSSignature element to the response. * * @param cmsSignatureResponse The content to put under the * CMSSignature element. */ private void addCMSSignature(CMSSignatureResponse cmsSignatureResponse) { String base64Value = cmsSignatureResponse.getCMSSignature(); Element cmsSignature = responseDoc.createElementNS(MOA_NS_URI, "CMSSignature"); cmsSignature.setTextContent(base64Value); responseElem.appendChild(cmsSignature); } /** * Add a ErrorResponse element to the response. * * @param errorResponse The API object containing the information to put into * the ErrorResponse DOM element. */ private void addErrorResponse(ErrorResponse errorResponse) { Element errorElem = responseDoc.createElementNS(MOA_NS_URI, "ErrorResponse"); Element errorCodeElem = responseDoc.createElementNS(MOA_NS_URI, "ErrorCode"); Element infoElem = responseDoc.createElementNS(MOA_NS_URI, "Info"); String errorCodeStr = Integer.toString(errorResponse.getErrorCode()); errorCodeElem.appendChild(responseDoc.createTextNode(errorCodeStr)); errorElem.appendChild(errorCodeElem); infoElem.appendChild(responseDoc.createTextNode(errorResponse.getInfo())); errorElem.appendChild(errorCodeElem); errorElem.appendChild(infoElem); responseElem.appendChild(errorElem); } }