blob: 276d9199ab9ebc6ff24797ea3f1e9b4db558a0f8 [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;
/**
* Types an entity to be historized.
*/
@Target(ElementType.TYPE)
@Retention(RetentionPolicy.RUNTIME)
public @interface HistorizedObject {
}