Examples of Delegate


Examples of org.opensaml.samlext.saml2delrestrict.Delegate

*/
public class DelegateUnmarshaller extends AbstractSAMLObjectUnmarshaller {

    /** {@inheritDoc} */
    protected void processAttribute(XMLObject samlObject, Attr attribute) throws UnmarshallingException {
        Delegate delegate = (Delegate) samlObject;
       
        String attrName = attribute.getLocalName();
        if (Delegate.CONFIRMATION_METHOD_ATTRIB_NAME.equals(attrName)) {
            delegate.setConfirmationMethod(attribute.getValue());
        } else if (Delegate.DELEGATION_INSTANT_ATTRIB_NAME.equals(attrName)) {
            delegate.setDelegationInstant(new DateTime(attribute.getValue(), ISOChronology.getInstanceUTC()));
        } else {
            super.processAttribute(samlObject, attribute);
        }
    }
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.