Package org.jitterbit.integration.data.entity.operation

Examples of org.jitterbit.integration.data.entity.operation.NextOperationFilter


        public PostOperationPanel(EntityExplorerSupport explorerSupport,
                                  OperationId selectedOpId,
                                  EmailMessageId selectedMessageId) {
            operationSelector = new IntegrationEntityComboBox(explorerSupport.getProject(),
                            EntityType.Operation, new NextOperationFilter(), true);
            operationSelector.setSelectedEntity(selectedOpId);
            messageSelector = new IntegrationEntityComboBox(explorerSupport.getProject(),
                            EntityType.EmailMessage, null, true);
            messageSelector.setSelectedEntity(selectedMessageId);
            addInputFields();
View Full Code Here


*/
public class FailureOperationSelector extends AbstractOnSuccessFailureSelector<Operation> {

    public FailureOperationSelector(OperationGraphController controller, OperationWrapperNode node) {
        super(controller, node, EntityType.Operation, Operation.class, RouteType.FAILURE);
        setFilter(new NextOperationFilter());
    }
View Full Code Here

*/
public class SuccessOperationSelector extends AbstractOnSuccessFailureSelector<Operation> {

    public SuccessOperationSelector(OperationGraphController controller, OperationWrapperNode node) {
        super(controller, node, EntityType.Operation, Operation.class, RouteType.SUCCESS);
        setFilter(new NextOperationFilter());
    }
View Full Code Here

TOP

Related Classes of org.jitterbit.integration.data.entity.operation.NextOperationFilter

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.