Package org.jitterbit.integration.data.structure

Examples of org.jitterbit.integration.data.structure.NoStructure


     * Sets the name, and source and target types of the transformation.
     */
    public void applyToTransformation(Transformation tf) {
        applyName(tf);
        if (getSourceType().getStructureType() == DataStructureType.None) {
            tf.setInputStructure(new NoStructure());
        }
        if (getTargetType().getStructureType() == DataStructureType.None) {
            tf.setOutputStructure(new NoStructure());
        }
        // For the other structure types the structure will be applied in a later page.
    }
View Full Code Here


            return false;
        }

        @Override
        public void applyTo(Transformation tf) {
            tf.setInputStructure(new NoStructure());
        }
View Full Code Here

            @Override
            public boolean canSendOutputTo(Target tgt) {
                return true;
            }
        };
        tf.setInputStructure(new NoStructure());
        tf.setOutputStructure(new NoStructure());
        tf.readOnly = true;
        return tf;
    }
View Full Code Here

            // the WebServiceCall they belong to. We can return here.
            return lookupWebServiceCall(root, lookup).getInputStructure();
        case WebServiceResponse:
            return lookupWebServiceCall(root, lookup).getOutputStructure();
        case None:
            struct = new NoStructure();
            break;
        case Database:
            struct = createDatabaseInputStructure(tf, lookup);
            break;
        case LDAP:
View Full Code Here

            // the WebServiceCall they belong to. We can return here.
            return lookupWebServiceCall(root, lookup).getInputStructure();
        case WebServiceResponse:
            return lookupWebServiceCall(root, lookup).getOutputStructure();
        case None:
            struct = new NoStructure();
            break;
        case Database:
            struct = createDatabaseOutputStructure(tf, lookup);
            break;
        case LDAP:
View Full Code Here

    protected final DataStructure getStructure(JmsMessage msg) throws WizardPageException {
        PayloadStructureType payloadType = msg.getPayloadStructureType();
        switch (payloadType) {
        case NONE:
            return new NoStructure();
        case XML:
            return getXmlStructure(msg);
        case TEXT:
            return getTextStructure(msg);
        }
View Full Code Here

TOP

Related Classes of org.jitterbit.integration.data.structure.NoStructure

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.