Class DocumentValidator
- java.lang.Object
-
- com.netgrif.application.engine.importer.service.DocumentValidator
-
- All Implemented Interfaces:
IDocumentValidator,IModelValidator
@Component public class DocumentValidator extends java.lang.Object implements IDocumentValidator
-
-
Constructor Summary
Constructors Constructor Description DocumentValidator()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidcheckConflictingAttributes(Document document, java.lang.Object attr1, java.lang.Object attr2, java.lang.String attr1Name, java.lang.String attr2Name)Self-beating attributes are two attributes, that should not be present inside their parent at the same time.voidcheckDeprecatedAttributes(Document document)-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface com.netgrif.application.engine.importer.service.IModelValidator
validateAttribute
-
-
-
-
Method Detail
-
checkDeprecatedAttributes
public void checkDeprecatedAttributes(Document document)
- Specified by:
checkDeprecatedAttributesin interfaceIDocumentValidator
-
checkConflictingAttributes
public void checkConflictingAttributes(Document document, java.lang.Object attr1, java.lang.Object attr2, java.lang.String attr1Name, java.lang.String attr2Name) throws BeatingAttributesException
Description copied from interface:IDocumentValidatorSelf-beating attributes are two attributes, that should not be present inside their parent at the same time. E.g.: if user definesin transition, the tag will be disabled, however, additional tags can be still added. - Specified by:
checkConflictingAttributesin interfaceIDocumentValidator- Parameters:
document- the model of PetriNetattr1- first element to be comparedattr2- second element to be comparedattr1Name- the name of first elementattr2Name- the name of second element- Throws:
BeatingAttributesException- is thrown when there are two attributes with different type but same goal
-
-