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

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


            tf.setOutputStructure(replacement.getOutputStructure());
            break;
        }
        case LDAP: {
            LdapStructure ldapStruct = (LdapStructure) output;
            TargetId targetId = ldapStruct.getLdapLocation().getTargetId();
            Target replacement = (Target) service.getReplacement(targetId);
            if (replacement != null) {
                tf.setTargetId(replacement.getID());
                ldapStruct.setLdapLocation((LdapLocation) replacement.getLocation());
            }
            break;
        }
        case Database: {
            DatabaseStructure dbStruct = (DatabaseStructure) output;
            TargetId targetId = dbStruct.getTargetId();
            Target replacement = (Target) service.getReplacement(targetId);
            if (replacement != null) {
                tf.setTargetId(replacement.getID());
                dbStruct.setTargetId(replacement.getID());
                dbStruct.setDbLocation((DatabaseLocation) replacement.getLocation());
View Full Code Here


            case SCRIPT:
                return new ScriptId(contentId);
            case SOURCE:
                return new SourceId(contentId);
            case TARGET:
                return new TargetId(contentId);
            case TRANSFORMATION:
                return new TransformationId(contentId);
            case WEBSERVICECALL:
                return new WebServiceCallId(contentId);
            case BULK_LOAD:
View Full Code Here

TOP

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

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.