com.nedap.archie.rmobjectvalidator.validations.RMMultiplicityValidation Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tools Show documentation
Show all versions of tools Show documentation
tools that operate on the archie reference models and archetype object model
The newest version!
package com.nedap.archie.rmobjectvalidator.validations;
import com.google.common.collect.Lists;
import com.nedap.archie.aom.CAttribute;
import com.nedap.archie.base.Cardinality;
import com.nedap.archie.base.MultiplicityInterval;
import com.nedap.archie.rmobjectvalidator.RMObjectValidationMessage;
import com.nedap.archie.rmobjectvalidator.RMObjectValidationMessageIds;
import com.nedap.archie.rmobjectvalidator.RMObjectValidationMessageType;
import java.util.ArrayList;
import java.util.Collection;
import java.util.List;
/**
* @deprecated This class will be removed. Use the RMObjectValidator instead.
*/
@Deprecated
public class RMMultiplicityValidation {
/**
* @deprecated This method will be removed. Use the RMObjectValidator instead.
*/
@Deprecated
public static List validate(CAttribute attribute, String pathSoFar, Object attributeValue) {
if (attributeValue instanceof Collection) {
Collection> collectionValue = (Collection>) attributeValue;
//validate multiplicity
Cardinality cardinality = attribute.getCardinality();
if (cardinality != null) {
if (!cardinality.getInterval().has(collectionValue.size())) {
String message = RMObjectValidationMessageIds.rm_CARDINALITY_MISMATCH.getMessage(cardinality.getInterval().toString());
return Lists.newArrayList(new RMObjectValidationMessage(attribute, pathSoFar, message, RMObjectValidationMessageType.CARDINALITY_MISMATCH));
}
}
} else {
MultiplicityInterval existence = attribute.getExistence();
if (existence != null) {
if (!existence.has(attributeValue == null ? 0 : 1)) {
String message = RMObjectValidationMessageIds.rm_EXISTENCE_MISMATCH.getMessage(attribute.getRmAttributeName(),
attribute.getParent() == null ? "Unknown type" : attribute.getParent().getRmTypeName(), existence.toString());
return Lists.newArrayList((new RMObjectValidationMessage(attribute, pathSoFar, message, RMObjectValidationMessageType.REQUIRED)));
}
}
}
return new ArrayList<>();
}
}