org.onetwo.boot.plugin.mvc.annotation.WebPluginContext Maven / Gradle / Ivy
package org.onetwo.boot.plugin.mvc.annotation;
import static java.lang.annotation.ElementType.METHOD;
import static java.lang.annotation.ElementType.TYPE;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
@Target({TYPE, METHOD})
@Retention(RetentionPolicy.RUNTIME)
public @interface WebPluginContext {
String contextPath();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy