Package org.jitterbit.application.ui.wizard

Examples of org.jitterbit.application.ui.wizard.WizardPageException


    @Override
    public void applyToWebServiceCall(WebServiceCall ws) throws WizardPageException {
        try {
            ws.setName(ui.getName());
        } catch (IllegalNameException e) {
            throw new WizardPageException(this, e);
        }
    }
View Full Code Here


        ws.setOtherNamespaces(webServiceInfo.getOtherNamespacesString());
        securityPanel.applyValuesTo(ws);
        try {
            ws.setCallRestrictions(restrictionsPanel.getCallRestrictions(ws));
        } catch (IllegalStateException e) {
            throw new WizardPageException(this, e);
        }
    }
View Full Code Here

                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

                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

            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

                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

                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

                DataStructure structure = doc.getDataStructure();
                tf.setInputStructure(structure);
                tf.setSourceTextDocumentId(doc.getID());
            } else {
                // This will happen if the user deletes the text document before completing the wizard
                throw new WizardPageException(delegate.getFirstPage(), "Must select a text document");
            }
        }
View Full Code Here

                DataStructure structure = doc.getDataStructure();
                tf.setOutputStructure(structure);
                tf.setTargetTextDocumentId(doc.getID());
            } else {
                // This will happen if the user deletes the text document before completing the wizard
                throw new WizardPageException(delegate.getFirstPage(), "Must select a text document");
            }
        }
View Full Code Here

            tf.setSourceTextDocumentId(msg.getPayloadTextDocumentId());
            // TODO: The message properties.
        } else {
            // TODO: This may happen if the user deleted the JMS message before completing
            // the transformation.
            throw new WizardPageException(this, PackageResources.SourceStartPage.NO_SOURCE_SELECTED);
        }
    }
View Full Code Here

TOP

Related Classes of org.jitterbit.application.ui.wizard.WizardPageException

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.