*/
public class GeolocationHintMarshaller extends AbstractSAMLObjectMarshaller {
/** {@inheritDoc} */
protected void marshallElementContent(XMLObject samlObject, Element domElement) throws MarshallingException {
GeolocationHint name = (GeolocationHint) samlObject;
if (name.getHint() != null) {
XMLHelper.appendTextContent(domElement, name.getHint());
}
}