blob: ef84091e6c5798acc3e8fdbf08b8713dbc67f1af [file] [log] [blame]
package org.eclipse.osbp.runtime.common.annotations;
import static java.lang.annotation.ElementType.FIELD;
import static java.lang.annotation.RetentionPolicy.RUNTIME;
import java.lang.annotation.Retention;
import java.lang.annotation.Target;
@Retention(RUNTIME)
@Target(FIELD)
public @interface ReadOnly {
}