package org.aksw.jena_sparql_api.mapper.annotation; import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; /** * Annotation to define a base IRI which will be used to prefix any * (namespace-less) relative IRIs. * * @author raven * */ @Retention(RetentionPolicy.RUNTIME) @Target(ElementType.TYPE) public @interface Base { String value(); }