Package com.sforce.soap.metadata

Examples of com.sforce.soap.metadata.DebuggingHeader_element


            logger.warn("Unable to set debug level - metadata stub is null");
            return;
        }

        //Does this do the same thing as below? if we even need it.
        DebuggingHeader_element header = metadataConnection.getDebuggingHeader();
        Map<String, LogInfo> logInfoMap = new HashMap<String, LogInfo>();
        //Add old headers
        if(header!=null){
            for (LogInfo info : header.getCategories()) {
                logInfoMap.put(info.getCategory().name(), info);
            }
        }

        //Add new headers
View Full Code Here

TOP

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

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.