package org.springframework.roo.addon.web.mvc.controller.annotations.config; import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; /** * This class provides annotation to indicate that some class * is a WebMvcConfiguration * * @author Juan Carlos GarcĂ­a * @since 2.0 */ @Retention(RetentionPolicy.SOURCE) @Target(ElementType.TYPE) public @interface RooWebMvcConfiguration { /** * Specifies the defaultLanguage of the generated application * * @return default Locale code of the generated application */ String defaultLanguage() default ""; }