*/
public class EmbeddedUnmarshaller extends AbstractWSSecurityObjectUnmarshaller {
/** {@inheritDoc} */
protected void processAttribute(XMLObject xmlObject, Attr attribute) throws UnmarshallingException {
Embedded embedded = (Embedded) xmlObject;
String attrName = attribute.getLocalName();
if (Embedded.VALUE_TYPE_ATTRIB_NAME.equals(attrName)) {
embedded.setValueType(attribute.getValue());
} else {
XMLHelper.unmarshallToAttributeMap(embedded.getUnknownAttributes(), attribute);
}
}