Examples of WebServiceCall


Examples of org.jitterbit.integration.data.entity.WebServiceCall

            @Override
            public WebServiceSelectionWizard get() {
                WebServiceCallId wsCallId = toEdit.getWebServiceCallId();
                IntegrationEntityLookup lookup = explorerSupport.getProject().getItemLookup();
                WebServiceCall wsCall = lookup.getEntity(wsCallId, WebServiceCall.class);
                return new WebServiceSelectionWizard(wsCall, explorerSupport);
            }
        });
    }
View Full Code Here

Examples of org.jitterbit.integration.data.entity.WebServiceCall

        return ws != null ? ws.getName() : getActivity().getRole();
    }

    @Override
    protected String getContentToolTip() {
        WebServiceCall ws = getWebServiceCall();
        return (ws != null) ? ToolTipStringFactory.getToolTip(ws) : TOOLTIP_WHEN_EMPTY;
    }
View Full Code Here

Examples of org.jitterbit.integration.data.entity.WebServiceCall

    }

    private JComponent createWebServiceCallAsInputOrOutputMessage(WebServiceStructure struct, String io, String type) {
        // XXX: Techincally, itemLookup can be null here.
        WebServiceCallId wsCallId = struct.getWebServiceCallId();
        WebServiceCall wsCall = itemLookup.getEntity(wsCallId, WebServiceCall.class);
        JLabel label = TextStyles.AdminHint.makeLabel("");
        RendererUtils.decorateRenderer(label, wsCall, false);
        String message = MessageFormat.format("The {0} of the transformation is a {1} ", io, type);
        return BoxBuilder.horizontal().addAll(message, label).container();
    }
View Full Code Here

Examples of org.jitterbit.integration.data.entity.WebServiceCall

            addPage(page);
        }

        @Override
        public void applyTo(Transformation tf) throws WizardPageException {
            WebServiceCall ws = page.getSelectedEntity();
            if (ws != null) {
                tf.setOutputStructure(ws.getOutputStructure());
            } else {
                // This could happen if the WebServiceCall that was selected
                // in the wizard has been deleted.
                // TODO: Handle this better?
                throw new WizardPageException(page, "No WebServiceCall defined.");
View Full Code Here

Examples of org.jitterbit.integration.data.entity.WebServiceCall

            addPage(page);
        }

        @Override
        public void applyTo(Transformation tf) throws WizardPageException {
            WebServiceCall ws = page.getSelectedEntity();
            if (ws != null) {
                tf.setInputStructure(ws.getOutputStructure());
            } else {
                // This could happen if the WebServiceCall that was selected
                // in the wizard has been deleted.
                // TODO: Handle this better?
                throw new WizardPageException(page, "No WebServiceCall defined.");
View Full Code Here

Examples of org.jitterbit.integration.data.entity.WebServiceCall

     * @throws WizardPageException
     *             if the selected <code>WebServiceCall</code> is deleted before the wizard has been
     *             completed.
     */
    public void applyToTransformation(Transformation tf) throws WizardPageException {
        WebServiceCall ws = getSelectedEntity();
        if (ws != null) {
            tf.setInputStructure(ws.getInputStructure());
            tf.setOutputStructure(ws.getOutputStructure());
        } else {
            // This could happen if the WebServiceCall that was selected in the wizard has been
            // deleted.
            // TODO: Handle this better?
            throw new WizardPageException(this, "No WebServiceCall defined.");
View Full Code Here

Examples of org.jitterbit.integration.data.entity.WebServiceCall

            addPage(page);
        }

        @Override
        public void applyTo(Transformation tf) throws WizardPageException {
            WebServiceCall ws = page.getSelectedEntity();
            if (ws != null) {
                tf.setInputStructure(ws.getInputStructure());
            } else {
                // This could happen if the WebServiceCall that was selected
                // in the wizard has been deleted.
                // TODO: Handle this better?
                throw new WizardPageException(page, "No WebServiceCall defined.");
View Full Code Here

Examples of org.jitterbit.integration.data.entity.WebServiceCall

            addPage(page);
        }

        @Override
        public void applyTo(Transformation tf) throws WizardPageException {
            WebServiceCall ws = page.getSelectedEntity();
            if (ws != null) {
                tf.setOutputStructure(ws.getInputStructure());
            } else {
                // This could happen if the WebServiceCall that was selected
                // in the wizard has been deleted.
                // TODO: Handle this better?
                throw new WizardPageException(page, "No WebServiceCall defined.");
View Full Code Here

Examples of org.jitterbit.integration.data.entity.WebServiceCall

*/
public final class WebServiceCallSearchValuesCollector implements SearchValuesCollector {

    @Override
    public List<String> getValues(IntegrationEntity object) {
        WebServiceCall wsCall = (WebServiceCall) object;
        return Arrays.asList(
                wsCall.getUrl(),
                wsCall.getWsdlFile().getLocator(),
                wsCall.getProperty(WebServiceCall.SOAP_ACTION),
                wsCall.getProperty(WebServiceCall.SERVICE),
                wsCall.getProperty(WebServiceCall.PORT),
                wsCall.getProperty(WebServiceCall.BINDING),
                wsCall.getProperty(WebServiceCall.OPERATION)
        );
    }
View Full Code Here

Examples of org.jitterbit.integration.data.entity.WebServiceCall

    private static final class WsdlProperty implements ReplaceableProperty<String> {

        @Override
        public void setValue(IntegrationEntity dataObject, String value) {
            WebServiceCall wsCall = (WebServiceCall) dataObject;
            synchronized (wsCall.getDataLock()) {
                wsCall.getWsdlFile().setLocator(value);
            }
        }
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.