package org.infinispan.atomic; import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; /** * To declare a method as modifying the state of the object. * * @author Pierre Sutra * @since 7.2 */ @Retention(RetentionPolicy.RUNTIME) @Target(ElementType.METHOD) public @interface Update { }