Package org.jitterbit.integration.server.implementation.webservice.interchange.treemapper.client

Examples of org.jitterbit.integration.server.implementation.webservice.interchange.treemapper.client.Breakpoint


* @since 3.0.0
*/
final class WsBreakpointBuilder {

    public static Breakpoint build(org.jitterbit.integration.debug.client.Breakpoint bp) {
        Breakpoint wsBreakpoint = new Breakpoint();
        wsBreakpoint.setLocation(WsBreakLocationBuilder.build(bp.getLocation()));
        wsBreakpoint.setConditionScript(bp.getConditionScript());
        wsBreakpoint.setConditionVariables(WsKeyValuePairsBuilder.build(bp.getConditionVariables()));
        return wsBreakpoint;
    }
View Full Code Here

TOP

Related Classes of org.jitterbit.integration.server.implementation.webservice.interchange.treemapper.client.Breakpoint

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.