java.lang.Object
org.apache.tinkerpop.gremlin.process.traversal.strategy.AbstractTraversalStrategy<TraversalStrategy.VerificationStrategy>
org.apache.tinkerpop.gremlin.process.traversal.strategy.verification.ReadOnlyStrategy
All Implemented Interfaces:
Serializable, Comparable<Class<? extends TraversalStrategy>>, TraversalStrategy<TraversalStrategy.VerificationStrategy>, TraversalStrategy.VerificationStrategy

Detects steps marked with Mutating and throws an IllegalStateException if one is found.
Author:
Marko A. Rodriguez (http://markorodriguez.com)
See Also:
Example:
 __.out().addE()                 // throws an VerificationException
 __.addV()                       // throws an VerificationException
 __.property(key,value)          // throws an VerificationException
 __.out().drop()                 // throws an VerificationException