Examples of GeolocationHint


Examples of org.opensaml.samlext.saml2mdui.GeolocationHint

*/
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());
        }
    }
View Full Code Here

Examples of org.opensaml.samlext.saml2mdui.GeolocationHint

*/
public class GeolocationHintUnmarshaller extends AbstractSAMLObjectUnmarshaller {

    /** {@inheritDoc} */
    protected void processElementContent(XMLObject samlObject, String elementContent) {
        GeolocationHint hint = (GeolocationHint) samlObject;

        hint.setHint(elementContent);
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.