package com.bitmonlab.osiris.core.validations.annotations; import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; /** * Annotation to mark the field as not changeable. */ @Target({ElementType.FIELD}) @Retention(RetentionPolicy.RUNTIME) public @interface PartialUpdateNotAllowed { }