Package org.opensaml.ws.wstrust

Examples of org.opensaml.ws.wstrust.SignChallengeType


*/
public class SignChallengeTypeMarshaller extends AbstractWSTrustObjectMarshaller {

    /** {@inheritDoc} */
    protected void marshallAttributes(XMLObject xmlObject, Element domElement) throws MarshallingException {
        SignChallengeType signChallengeType = (SignChallengeType) xmlObject;
        XMLHelper.marshallAttributeMap(signChallengeType.getUnknownAttributes(), domElement);
    }
View Full Code Here


*/
public class SignChallengeTypeUnmarshaller extends AbstractWSTrustObjectUnmarshaller {

    /** {@inheritDoc} */
    protected void processAttribute(XMLObject xmlObject, Attr attribute) throws UnmarshallingException {
        SignChallengeType signChallengeType= (SignChallengeType) xmlObject;
        XMLHelper.unmarshallToAttributeMap(signChallengeType.getUnknownAttributes(), attribute);
    }
View Full Code Here

    }

    /** {@inheritDoc} */
    protected void processChildElement(XMLObject parentXMLObject, XMLObject childXMLObject)
            throws UnmarshallingException {
        SignChallengeType signChallengeType= (SignChallengeType) parentXMLObject;
       
        if (childXMLObject instanceof Challenge) {
            signChallengeType.setChallenge((Challenge) childXMLObject);
        else {
            signChallengeType.getUnknownXMLObjects().add(childXMLObject);
        }
    }
View Full Code Here

*/
public class SignChallengeTypeUnmarshaller extends AbstractWSTrustObjectUnmarshaller {

    /** {@inheritDoc} */
    protected void processAttribute(XMLObject xmlObject, Attr attribute) throws UnmarshallingException {
        SignChallengeType signChallengeType= (SignChallengeType) xmlObject;
        XMLHelper.unmarshallToAttributeMap(signChallengeType.getUnknownAttributes(), attribute);
    }
View Full Code Here

    }

    /** {@inheritDoc} */
    protected void processChildElement(XMLObject parentXMLObject, XMLObject childXMLObject)
            throws UnmarshallingException {
        SignChallengeType signChallengeType= (SignChallengeType) parentXMLObject;
       
        if (childXMLObject instanceof Challenge) {
            signChallengeType.setChallenge((Challenge) childXMLObject);
        else {
            signChallengeType.getUnknownXMLObjects().add(childXMLObject);
        }
    }
View Full Code Here

*/
public class SignChallengeTypeMarshaller extends AbstractWSTrustObjectMarshaller {

    /** {@inheritDoc} */
    protected void marshallAttributes(XMLObject xmlObject, Element domElement) throws MarshallingException {
        SignChallengeType signChallengeType = (SignChallengeType) xmlObject;
        XMLHelper.marshallAttributeMap(signChallengeType.getUnknownAttributes(), domElement);
    }
View Full Code Here

TOP

Related Classes of org.opensaml.ws.wstrust.SignChallengeType

Copyright © 2018 www.massapicom. 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.