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

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


            case TARGET:
                return new TargetId(contentId);
            case TRANSFORMATION:
                return new TransformationId(contentId);
            case WEBSERVICECALL:
                return new WebServiceCallId(contentId);
            case BULK_LOAD:
                return new SalesforceBulkLoadId(contentId);
            default:
                throw new IllegalStateException("Unexpected activity type: " + type);
            }
View Full Code Here


        return links;
    }

    private WebServiceCall getWebServiceFromStructure(DataStructure struct) {
        if (struct instanceof WebServiceStructure) {
            WebServiceCallId id = ((WebServiceStructure) struct).getWebServiceCallId();
            return dataLookup.getEntity(id, WebServiceCall.class);
        }
        return null;
    }
View Full Code Here

        }
        return doc.getDataStructure();
    }

    private static WebServiceCall lookupWebServiceCall(Persistor p, IntegrationEntityLookup lookup) {
        WebServiceCallId id = null;
        try {
            id = new WebServiceCallId(p.getString(WSCALL_ID));
        } catch (RuntimeException ex) {
            throw new RuntimeException("Invalid persistor: missing or invalid WSCALL_ID field");
        }
        WebServiceCall wsCall = lookup.getEntity(id, WebServiceCall.class);
        if (wsCall == null) {
View Full Code Here

TOP

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

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.