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

Examples of org.jitterbit.integration.data.entity.operation.options.SourceHistoryOption


        this(op.getOptions(), op.getPipeline());
    }

    private SourceHistoryOptionUi(OperationOptions options, OperationPipeline pipeline) {
        super(OperationResources.getString("Page.History"));
        SourceHistoryOption current = options.getSourceHistoryOption();
        setSelected(current.isHistoryChecked());
        setEnabled(current.isApplicableFor(pipeline));
    }
View Full Code Here


        setEnabled(current.isApplicableFor(pipeline));
    }

    @Override
    public SourceHistoryOption getDefinedOption() {
        return new SourceHistoryOption(isSelected());
    }
View Full Code Here

            OperationPipeline pipeline = type.createNewTemplate();
            op.setPipeline(pipeline);
        }
        SchedulePolicy sp = DefaultSchedulePolicyPreference.get();
        op.setSchedulePolicy(sp);
        SourceHistoryOption sourceHistoryOption = new SourceHistoryOption(DefaultSourceHistorySettingPreference.INSTANCE.get());
        sourceHistoryOption.applyTo(op);
    }
View Full Code Here

TOP

Related Classes of org.jitterbit.integration.data.entity.operation.options.SourceHistoryOption

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.