Package org.jitterbit.integration.data.entity.id

Examples of org.jitterbit.integration.data.entity.id.ScriptId


        if (isNotEmpty(tranGuid)) {
            integrationEntityId = new TransformationId(tranGuid);
        }
        String scriptGuid = wsBreakLocation.getScriptGuid();
        if (isNotEmpty(scriptGuid)) {
            integrationEntityId = new ScriptId(scriptGuid);
        }
        if (isNotEmpty(wsBreakLocation.getNodePath())) {
            this.targetNodePath = wsBreakLocation.getNodePath();
        } else {
            this.targetNodePath = targetNodePath;
View Full Code Here


        expression += createFunctionCall("ReadFile", sourceId);
        expression += ";";
        targetId = new TargetId();
        expression += createFunctionCall("WriteFile", targetId);
        expression += ";";
        scriptId = new ScriptId();
        expression += createFunctionCall("RunScript", scriptId);
        expression += ";";
        emailId = new EmailMessageId();
        expression += createFunctionCall("SendEmailMessage", emailId);
    }
View Full Code Here

        } else if ("t".equals(strippedPrefix)) {
            return new TargetId(id);
        } else if ("op".equals(strippedPrefix)) {
            return new OperationId(id);
        } else if ("sc".equals(strippedPrefix)) {
            return new ScriptId(id);
        } else if ("m".equals(strippedPrefix)) {
            return new SourceId(id);
        } else {
            System.err.println("Unexpected id prefix: " + strippedPrefix);
            return null;
View Full Code Here

            if (contentId == null) {
                return null;
            }
            switch (type) {
            case SCRIPT:
                return new ScriptId(contentId);
            case SOURCE:
                return new SourceId(contentId);
            case TARGET:
                return new TargetId(contentId);
            case TRANSFORMATION:
View Full Code Here

TOP

Related Classes of org.jitterbit.integration.data.entity.id.ScriptId

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.