public FileItemIterator getItemIterator()

in src/java/org/apache/fulcrum/upload/DefaultUploadService.java [308:317]


	public FileItemIterator getItemIterator(ActionRequest req) throws ServiceException {
		PortletFileUpload upload = new PortletFileUpload();
		try {
			return upload.getItemIterator(req);
		} catch (FileUploadException e) {
			throw new ServiceException(UploadService.ROLE, e.getMessage(), e);
		} catch (IOException e) {
			throw new ServiceException(UploadService.ROLE, e.getMessage(), e);
		}
	}