Package com.sforce.soap.metadata

Examples of com.sforce.soap.metadata.RetrieveResult


    public RetrieveResult checkRetrieveStatus(String asyncProcessId) throws ForceRemoteException {
        if (metadataConnection == null) {
            throw new IllegalArgumentException("Metadata stub cannot be null");
        }

        RetrieveResult retrieveResult = null;
        try {
            retrieveResult = metadataConnection.checkRetrieveStatus(asyncProcessId);
        } catch (ConnectionException e) {
            ForceExceptionUtils.throwTranslatedException(e, connection);
        }
View Full Code Here


            throw new IllegalArgumentException("MetadataStubExt cannot be null");
        }

        monitorCheckSubTask(monitor, Messages.getString("Retrieve.PreparingResults"));

        RetrieveResult retrieveResult;
        try {
            IFileBasedResultAdapter result =
                    waitForResult(new RetrieveResultAdapter(asyncResult, metadataStubExt), metadataStubExt,
                        operationStats, monitor);
            retrieveResult = ((RetrieveResultAdapter) result).getRetrieveResult();
View Full Code Here

TOP

Related Classes of com.sforce.soap.metadata.RetrieveResult

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.