當前位置: 首頁>>代碼示例>>Java>>正文


Java CollectionSizeConstraint類代碼示例

本文整理匯總了Java中org.kuali.rice.krad.datadictionary.validation.constraint.CollectionSizeConstraint的典型用法代碼示例。如果您正苦於以下問題:Java CollectionSizeConstraint類的具體用法?Java CollectionSizeConstraint怎麽用?Java CollectionSizeConstraint使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


CollectionSizeConstraint類屬於org.kuali.rice.krad.datadictionary.validation.constraint包,在下文中一共展示了CollectionSizeConstraint類的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: init

import org.kuali.rice.krad.datadictionary.validation.constraint.CollectionSizeConstraint; //導入依賴的package包/類
@Override
public void init() {
    resolverMap = new HashMap<String, ConstraintResolver<CollectionDefinition>>();
    resolverMap.put(ExistenceConstraint.class.getName(), new DefinitionConstraintResolver<CollectionDefinition>());
    resolverMap.put(CollectionSizeConstraint.class.getName(),
            new DefinitionConstraintResolver<CollectionDefinition>());
}
 
開發者ID:kuali,項目名稱:kc-rice,代碼行數:8,代碼來源:CollectionDefinitionConstraintProvider.java

示例2: process

import org.kuali.rice.krad.datadictionary.validation.constraint.CollectionSizeConstraint; //導入依賴的package包/類
/**
 * @see org.kuali.rice.krad.datadictionary.validation.processor.ConstraintProcessor#process(org.kuali.rice.krad.datadictionary.validation.result.DictionaryValidationResult,
 *      Object, org.kuali.rice.krad.datadictionary.validation.constraint.Constraint,
 *      org.kuali.rice.krad.datadictionary.validation.AttributeValueReader)
 */
@Override
public ProcessorResult process(DictionaryValidationResult result, Collection<?> collection,
        CollectionSizeConstraint constraint,
        AttributeValueReader attributeValueReader) throws AttributeValidationException {

    // To accommodate the needs of other processors, the ConstraintProcessor.process() method returns a list of ConstraintValidationResult objects
    // but since a definition that is collection size constrained only provides a single max and minimum, there is effectively a single constraint
    // being imposed.
    return new ProcessorResult(processSingleCollectionSizeConstraint(result, collection, constraint,
            attributeValueReader));
}
 
開發者ID:kuali,項目名稱:kc-rice,代碼行數:17,代碼來源:CollectionSizeConstraintProcessor.java

示例3: getConstraintType

import org.kuali.rice.krad.datadictionary.validation.constraint.CollectionSizeConstraint; //導入依賴的package包/類
/**
 * @see org.kuali.rice.krad.datadictionary.validation.processor.ConstraintProcessor#getConstraintType()
 */
@Override
public Class<? extends Constraint> getConstraintType() {
    return CollectionSizeConstraint.class;
}
 
開發者ID:kuali,項目名稱:kc-rice,代碼行數:8,代碼來源:CollectionSizeConstraintProcessor.java

示例4: processSingleCollectionSizeConstraint

import org.kuali.rice.krad.datadictionary.validation.constraint.CollectionSizeConstraint; //導入依賴的package包/類
protected ConstraintValidationResult processSingleCollectionSizeConstraint(DictionaryValidationResult result,
        Collection<?> collection, CollectionSizeConstraint constraint,
        AttributeValueReader attributeValueReader) throws AttributeValidationException {
    Integer sizeOfCollection = new Integer(0);
    if (collection != null) {
        sizeOfCollection = Integer.valueOf(collection.size());
    }

    Integer maxOccurances = constraint.getMaximumNumberOfElements();
    Integer minOccurances = constraint.getMinimumNumberOfElements();

    Result lessThanMax = ValidationUtils.isLessThanOrEqual(sizeOfCollection, maxOccurances);
    Result greaterThanMin = ValidationUtils.isGreaterThanOrEqual(sizeOfCollection, minOccurances);

    // It's okay for one end of the range to be undefined - that's not an error. It's only an error if one of them is invalid
    if (lessThanMax != Result.INVALID && greaterThanMin != Result.INVALID) {
        // Of course, if they're both undefined then we didn't actually have a real constraint
        if (lessThanMax == Result.UNDEFINED && greaterThanMin == Result.UNDEFINED) {
            return result.addNoConstraint(attributeValueReader, CONSTRAINT_NAME);
        }

        // In this case, we've succeeded
        return result.addSuccess(attributeValueReader, CONSTRAINT_NAME);
    }

    String maxErrorParameter = maxOccurances != null ? maxOccurances.toString() : null;
    String minErrorParameter = minOccurances != null ? minOccurances.toString() : null;

    // If both comparisons happened then if either comparison failed we can show the end user the expected range on both sides.
    if (lessThanMax != Result.UNDEFINED && greaterThanMin != Result.UNDEFINED) {
        return result.addError(attributeValueReader, CONSTRAINT_NAME, RiceKeyConstants.ERROR_QUANTITY_RANGE,
                minErrorParameter, maxErrorParameter);
    }
    // If it's the max comparison that fails, then just tell the end user what the max can be
    else if (lessThanMax == Result.INVALID) {
        return result.addError(attributeValueReader, CONSTRAINT_NAME, RiceKeyConstants.ERROR_MAX_OCCURS,
                maxErrorParameter);
    }
    // Otherwise, just tell them what the min can be
    else {
        return result.addError(attributeValueReader, CONSTRAINT_NAME, RiceKeyConstants.ERROR_MIN_OCCURS,
                minErrorParameter);
    }

    // Obviously the last else above is unnecessary, since anything after it is dead code, but keeping it seems clearer than dropping it
}
 
開發者ID:kuali,項目名稱:kc-rice,代碼行數:47,代碼來源:CollectionSizeConstraintProcessor.java


注:本文中的org.kuali.rice.krad.datadictionary.validation.constraint.CollectionSizeConstraint類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。