com.vaadin.flow.templatemodel.
Annotation Type Exclude
-
@Retention(value=RUNTIME) @Target(value=METHOD) @Documented public @interface Exclude
Defines which properties to exclude when importing a bean into a template model.
Use this annotation on bean setters in your
TemplateModel
class to restrict which properties of the beans are imported into the model.You can only define exact matches using this filter. If you need more control, you can use
TemplateModel.importBean(String, Object, java.util.function.Predicate)
and define a custom filter.Note that
@Exclude
annotations are not inherited.Since:
1.0
Author:
Vaadin Ltd
See Also:
-
-
Element Detail
-
value
public abstract String[] value
Properties to exclude from a bean when importing into a template model.
By default no properties are excluded.
Returns:
the properties to exclude from a bean when importing into a template model
-
-