Package org.opensaml.ws.wssecurity

Examples of org.opensaml.ws.wssecurity.Iteration


*/
public class IterationUnmarshaller extends AbstractWSSecurityObjectUnmarshaller {

    /** {@inheritDoc} */
    protected void processElementContent(XMLObject xmlObject, String elementContent) {
        Iteration iteration = (Iteration) xmlObject;
        if (elementContent != null) {
            iteration.setValue(Integer.valueOf(elementContent));
        }
    }
View Full Code Here


*/
public class IterationMarshaller extends AbstractWSSecurityObjectMarshaller {

    /** {@inheritDoc} */
    protected void marshallElementContent(XMLObject xmlObject, Element domElement) throws MarshallingException {
        Iteration iteration = (Iteration) xmlObject;
       
        if (iteration.getValue() != null) {
            XMLHelper.appendTextContent(domElement, iteration.getValue().toString());
        }
    }
View Full Code Here

*/
public class IterationUnmarshaller extends AbstractWSSecurityObjectUnmarshaller {

    /** {@inheritDoc} */
    protected void processElementContent(XMLObject xmlObject, String elementContent) {
        Iteration iteration = (Iteration) xmlObject;
        if (elementContent != null) {
            iteration.setValue(Integer.valueOf(elementContent));
        }
    }
View Full Code Here

*/
public class IterationMarshaller extends AbstractWSSecurityObjectMarshaller {

    /** {@inheritDoc} */
    protected void marshallElementContent(XMLObject xmlObject, Element domElement) throws MarshallingException {
        Iteration iteration = (Iteration) xmlObject;
       
        if (iteration.getValue() != null) {
            XMLHelper.appendTextContent(domElement, iteration.getValue().toString());
        }
    }
View Full Code Here

TOP

Related Classes of org.opensaml.ws.wssecurity.Iteration

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.