package org.atomhopper.adapter; import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; /** * This annotation may or may not be used now that interfaces are split along * domain lines */ @Retention(RetentionPolicy.RUNTIME) @Target(ElementType.METHOD) public @interface NotImplemented { }