Package org.jitterbit.integration.data.entity

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


        return EntityIcons.forType(EntityType.SalesforceBulkLoad).getDefaultIcon(Size.LARGE);
    }

    @Override
    protected String getContentString() {
        SalesforceBulkLoad blo = getBulkLoad();
        return blo == null ? "Bulk Load" : blo.getAction().toString();
    }
View Full Code Here


        return getActivity().getContent();
    }

    @Override
    protected String getContentToolTip() {
        SalesforceBulkLoad blo = getBulkLoad();
        return blo == null ? "Bulk Load" : ToolTipStringFactory.getToolTip(blo);
    }
View Full Code Here

TOP

Related Classes of org.jitterbit.integration.data.entity.SalesforceBulkLoad

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.