com.acsinet_solutions.cetia4.controller.meta
Annotation Type Multipart


@Documented
@Retention(value=RUNTIME)
@Target(value=METHOD)
@Inherited
public @interface Multipart

This annotation indicates a multipart method with optional characteristics. It is no required for every multipart method because a multipart method may be identified checking if an action method has parameters of type FileItem. But this annotation is necessary on methods where it is necessary to indicate starting at which parameter path info parameters stop being path info parameters, and multipart simple parameters start.

Author:
Santiago Arriaga

Optional Element Summary
 int numberOfPathInfoParams
          The number of path info parameters in the method.
 

numberOfPathInfoParams

public abstract int numberOfPathInfoParams
The number of path info parameters in the method. A -1 number indicates that there are as many as basic params before a FileItem param.

Default:
-1