*/
public class SaltMarshaller extends AbstractWSSecurityObjectMarshaller {
/** {@inheritDoc} */
protected void marshallElementContent(XMLObject xmlObject, Element domElement) throws MarshallingException {
Salt salt = (Salt) xmlObject;
XMLHelper.appendTextContent(domElement, salt.getValue());
}