Examples of AssessmentDescriptor


Examples of org.zeroexchange.collaboration.contract.flow.assessment.AssessmentDescriptor

        if(supplier == null) {
            throw new BusinessLogicException(
                    "Cannot find the accepted supply for the resource #"+ resource.getId() +"!");
        }
       
        AssessmentDescriptor assessmentDescriptor = new AssessmentDescriptor();
        assessmentDescriptor.setAssessmentType(BasicAssessmentTypes.BUSINESS_QUALITY);
        assessmentDescriptor.setComment(businessQualityComment);
        assessmentDescriptor.setSupplier(supplier);
        assessmentDescriptor.setResource(resource);
        assessmentDescriptor.setContractId(resource.getContract().getId());
        assessmentDescriptor.setValue(businessQuality);
       
        //Perform resource auto-movement
        eventsDispatcher.publishEvent(new ResourceProvided(evaluator, assessmentDescriptor));
       
    }
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.