Package com.denimgroup.threadfix.service.defects.utils.jira

Examples of com.denimgroup.threadfix.service.defects.utils.jira.DefectPayload


        return errorFieldList;
    }

    private String getPayload(Map<String, Object> objectMap) {

        DefectPayload payload = new DefectPayload(objectMap, getJiraMetadata());

        try {
            return new ObjectMapper().writeValueAsString(payload);
        } catch (IOException e) {
            throw new DefectTrackerFormatException(e, "We were unable to serialize object as JSON");
View Full Code Here

TOP

Related Classes of com.denimgroup.threadfix.service.defects.utils.jira.DefectPayload

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.