|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: REQUIRED | OPTIONAL | DETAIL: ELEMENT | |||||||||
@Retention(value=RUNTIME)
@Target(value={})
@Documented
public @interface SubmissionBeanDeclares a submission bean.
SubmissionBeanProperty| Required Element Summary | |
|---|---|
Class |
beanclass
The class of the submission bean. |
| Optional Element Summary | |
|---|---|
String |
group
The validation group that has been declared by the bean class. |
String |
name
The name of the submission bean. |
String |
prefix
The prefix that will be prepended to each property name of the submission bean when corresponding parameters are automatically declared. |
| Element Detail |
|---|
public abstract Class beanclass
public abstract String prefix
public abstract String name
public abstract String group
This requires the bean class to implement the ValidatedConstrained
interface, either directly, or by extending MetaData, or by using
automated meta data merging.
The group will indicate which bean properties should only be taken into account. Any properties outside the group will not be created as submission parameters.
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: REQUIRED | OPTIONAL | DETAIL: ELEMENT | |||||||||