Examples of Iteration


Examples of org.opensaml.ws.wssecurity.Iteration

*/
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
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.