Class TransitionValidator
- java.lang.Object
- 
- com.netgrif.application.engine.importer.service.TransitionValidator
 
- 
- All Implemented Interfaces:
- IModelValidator,- ITransitionValidator
 
 @Component public class TransitionValidator extends java.lang.Object implements ITransitionValidator 
- 
- 
Constructor SummaryConstructors Constructor Description TransitionValidator()
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description voidcheckConflictingAttributes(Transition transition, 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(Transition transition)- 
Methods inherited from class java.lang.Objectclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 - 
Methods inherited from interface com.netgrif.application.engine.importer.service.IModelValidatorvalidateAttribute
 
- 
 
- 
- 
- 
Method Detail- 
checkDeprecatedAttributespublic void checkDeprecatedAttributes(Transition transition) - Specified by:
- checkDeprecatedAttributesin interface- ITransitionValidator
 
 - 
checkConflictingAttributespublic void checkConflictingAttributes(Transition transition, java.lang.Object attr1, java.lang.Object attr2, java.lang.String attr1Name, java.lang.String attr2Name) throws BeatingAttributesException Description copied from interface:ITransitionValidatorSelf-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 interface- ITransitionValidator
- Parameters:
- transition- the model of Transition
- attr1- first element to be compared
- attr2- second element to be compared
- attr1Name- the name of first element
- attr2Name- the name of second element
- Throws:
- BeatingAttributesException- is thrown when there are two attributes with different type but same goal
 
 
- 
 
-