Allow the @Binder annotation to be used with a File object.
@ServiceMethod(name="TEST_SERVICE")
public void testService(@Binder(name="fileUpload") File fileUpload) {
long modTime = fileUpload.lastModified()
if (fileUpload.exists()) {
// do something
}
}
Allow the
@Binder
annotation to be used with aFile
object.