com.aire.ux.test.spring.servlet.WithServlets Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aire-test-spring Show documentation
Show all versions of aire-test-spring Show documentation
Sunshower UX Testing Libraries
The newest version!
package com.aire.ux.test.spring.servlet;
import jakarta.servlet.Servlet;
import java.lang.annotation.Documented;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
@Documented
@Target(ElementType.TYPE)
@Retention(RetentionPolicy.RUNTIME)
public @interface WithServlets {
Class extends Servlet>[] value() default Servlet.class;
ServletDefinition[] servlets() default {};
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy