1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146
|
/*
* JBoss, Home of Professional Open Source
* Copyright 2005, JBoss Inc., and individual contributors as indicated
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
* This is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation; either version 2.1 of
* the License, or (at your option) any later version.
*
* This software 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 software; if not, write to the Free
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
package org.jboss.ws.extensions.wsrm.common.serialization;
import static org.jboss.ws.extensions.wsrm.common.serialization.RMSerializationHelper.stringToLong;
import static org.jboss.ws.extensions.wsrm.common.serialization.RMSerializationHelper.getOptionalElement;
import static org.jboss.ws.extensions.wsrm.common.serialization.RMSerializationHelper.getRequiredElement;
import static org.jboss.ws.extensions.wsrm.common.serialization.RMSerializationHelper.getRequiredTextContent;
import javax.xml.namespace.QName;
import javax.xml.soap.SOAPBody;
import javax.xml.soap.SOAPElement;
import javax.xml.soap.SOAPEnvelope;
import javax.xml.soap.SOAPException;
import javax.xml.soap.SOAPMessage;
import org.jboss.ws.extensions.wsrm.api.RMException;
import org.jboss.ws.extensions.wsrm.spi.RMConstants;
import org.jboss.ws.extensions.wsrm.spi.RMProvider;
import org.jboss.ws.extensions.wsrm.spi.protocol.RMCloseSequence;
import org.jboss.ws.extensions.wsrm.spi.protocol.RMSerializable;
/**
* <b>CloseSequence</b> object de/serializer
* @author richard.opalka@jboss.com
*/
final class RMCloseSequenceSerializer implements RMSerializer
{
private static final RMSerializer INSTANCE = new RMCloseSequenceSerializer();
private RMCloseSequenceSerializer()
{
// hide constructor
}
static RMSerializer getInstance()
{
return INSTANCE;
}
/**
* Deserialize <b>CloseSequence</b> using <b>provider</b> from the <b>soapMessage</b>
* @param object to be deserialized
* @param provider wsrm provider to be used for deserialization process
* @param soapMessage soap message from which object will be deserialized
*/
public final void deserialize(RMSerializable object, RMProvider provider, SOAPMessage soapMessage)
throws RMException
{
RMCloseSequence o = (RMCloseSequence)object;
try
{
SOAPBody soapBody = soapMessage.getSOAPPart().getEnvelope().getBody();
RMConstants wsrmConstants = provider.getConstants();
// read required wsrm:CloseSequence element
QName closeSequenceQName = wsrmConstants.getCloseSequenceQName();
SOAPElement closeSequenceElement = getRequiredElement(soapBody, closeSequenceQName, "soap body");
// read required wsrm:Identifier element
QName identifierQName = wsrmConstants.getIdentifierQName();
SOAPElement identifierElement = getRequiredElement(closeSequenceElement, identifierQName, closeSequenceQName);
String identifier = getRequiredTextContent(identifierElement, identifierQName);
o.setIdentifier(identifier);
// read optional wsrm:LastMsgNumber element
QName lastMsgNumberQName = wsrmConstants.getLastMsgNumberQName();
SOAPElement lastMsgNumberElement = getOptionalElement(closeSequenceElement, lastMsgNumberQName, closeSequenceQName);
if (lastMsgNumberElement != null)
{
String lastMsgNumberString = getRequiredTextContent(lastMsgNumberElement, lastMsgNumberQName);
long lastMsgNumberValue = stringToLong(lastMsgNumberString, "Unable to parse LastMsgNumber element text content");
o.setLastMsgNumber(lastMsgNumberValue);
}
}
catch (SOAPException se)
{
throw new RMException("Unable to deserialize RM message", se);
}
catch (RuntimeException re)
{
throw new RMException("Unable to deserialize RM message", re);
}
}
/**
* Serialize <b>CloseSequence</b> using <b>provider</b> to the <b>soapMessage</b>
* @param object to be serialized
* @param provider wsrm provider to be used for serialization process
* @param soapMessage soap message to which object will be serialized
*/
public final void serialize(RMSerializable object, RMProvider provider, SOAPMessage soapMessage)
throws RMException
{
RMCloseSequence o = (RMCloseSequence)object;
try
{
SOAPEnvelope soapEnvelope = soapMessage.getSOAPPart().getEnvelope();
RMConstants wsrmConstants = provider.getConstants();
// Add xmlns:wsrm declaration
soapEnvelope.addNamespaceDeclaration(wsrmConstants.getPrefix(), wsrmConstants.getNamespaceURI());
// write required wsrm:CloseSequence element
QName closeSequenceQName = wsrmConstants.getCloseSequenceQName();
SOAPElement closeSequenceElement = soapEnvelope.getBody().addChildElement(closeSequenceQName);
// write required wsrm:Identifier element
QName identifierQName = wsrmConstants.getIdentifierQName();
closeSequenceElement.addChildElement(identifierQName).setValue(o.getIdentifier());
if (o.getLastMsgNumber() != 0)
{
// write optional wsrm:LastMsgNumber element
QName lastMsgNumberQName = wsrmConstants.getLastMsgNumberQName();
SOAPElement lastMsgNumberElement = closeSequenceElement.addChildElement(lastMsgNumberQName);
lastMsgNumberElement.setValue(String.valueOf(o.getLastMsgNumber()));
}
}
catch (SOAPException se)
{
throw new RMException("Unable to serialize RM message", se);
}
}
}
|