package org.etk.orm.api.annotations; import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; /** * Annotates a bean property getter to return the current identifier of the related jcr node. * */ @Retention(RetentionPolicy.RUNTIME) @Target(ElementType.METHOD) public @interface Id { }