blob: c024477f32b0c65581a4c7c956e4444c837cc597 [file] [log] [blame]
package org.eclipse.osbp.runtime.common.annotations;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* Marks a field to keep the historized domainkey.
* <p>
* Eg. {domainkey} + " - " + {validFrom as Date}. The domainkey will be updated
* automatically bei listeners.
*/
@Target(ElementType.FIELD)
@Retention(RetentionPolicy.RUNTIME)
public @interface HistDomainKey {
}