package com.netflix.fabricator.annotations; import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; /** * Annotation specifying an interface type and it's type name in configuration files * * @author elandau */ @Retention(RetentionPolicy.RUNTIME) @Target(ElementType.TYPE) public @interface Type { String value(); }