Examples of DisclosureProblemOutputMessage


Examples of org.wijiscommons.cdcl.gatepoint.DisclosureProblemOutputMessage

    public Document performDisclosureControl(Document ssafDocument)
    {
        Node samlAssertionResponseNode = SSAFDocumentUtil.getSAMLAssertionForRecipientUser(ssafDocument);
        Node messagePayload = SSAFDocumentUtil.getMessagePayload(ssafDocument);
       
        DisclosureProblemOutputMessage disclosureProblemOutputMessage =
            invokeCDCLGatepoint(messagePayload, samlAssertionResponseNode);
       
        updatePayload(ssafDocument, messagePayload, disclosureProblemOutputMessage);
        updateProvenanceInfo(ssafDocument, disclosureProblemOutputMessage);
       
View Full Code Here

Examples of org.wijiscommons.cdcl.gatepoint.DisclosureProblemOutputMessage

        SSAFDocumentUtil.addNewProcessHistoryItemNode(ssafDocument, gatepointProvenanceNode, gatepointURI, gatepointProcessTimestamp);        
    }

    private DisclosureProblemOutputMessage invokeCDCLGatepoint(Node messagePayload, Node samlAssertionResponseNode)
    {
        DisclosureProblemOutputMessage disclosureProblemOutputMessage = null;
       
        DisclosureProblemInputMessage disclosureProblemInputMessage =
            CDCLComponentBuilder.createDisclosureProblemInputMessage(samlAssertionResponseNode, messagePayload);
       
        Map<String, DisclosureProblemInputMessage> inputMessages = new HashMap<String, DisclosureProblemInputMessage>(1);
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.