package org.ovirt.engine.core.common.businessentities; import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; /** * This annotation is used to mark a field * that need to be copied to vm, from a new template version */ @Target(ElementType.FIELD) @Retention(RetentionPolicy.RUNTIME) public @interface CopyOnNewVersion { }