EMMA Coverage Report (generated Fri Aug 21 15:59:46 BST 2009)
[all classes][org.springframework.batch.core.step.item]

COVERAGE SUMMARY FOR SOURCE FILE [DefaultItemFailureHandler.java]

nameclass, %method, %block, %line, %
DefaultItemFailureHandler.java0%   (0/1)0%   (0/4)0%   (0/53)0%   (0/13)

COVERAGE BREAKDOWN BY CLASS AND METHOD

nameclass, %method, %block, %line, %
     
class DefaultItemFailureHandler0%   (0/1)0%   (0/4)0%   (0/53)0%   (0/13)
<static initializer> 0%   (0/1)0%   (0/4)0%   (0/3)
DefaultItemFailureHandler (): void 0%   (0/1)0%   (0/3)0%   (0/1)
onReadError (Exception): void 0%   (0/1)0%   (0/19)0%   (0/5)
onWriteError (Exception, List): void 0%   (0/1)0%   (0/27)0%   (0/5)

1/*
2 * Copyright 2006-2008 the original author or authors.
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 *      http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16package org.springframework.batch.core.step.item;
17 
18import java.util.List;
19 
20import org.apache.commons.logging.Log;
21import org.apache.commons.logging.LogFactory;
22import org.springframework.batch.core.listener.ItemListenerSupport;
23 
24/**
25 * Default implementation of the {@link ItemListenerSupport} class that
26 * writes all exceptions via commons logging. Since generics can't be used to
27 * ensure the list contains exceptions, any non exceptions will be logged out by
28 * calling toString on the object.
29 * 
30 * @author Lucas Ward
31 * 
32 */
33public class DefaultItemFailureHandler extends ItemListenerSupport<Object,Object> {
34 
35        protected static final Log logger = LogFactory
36                        .getLog(DefaultItemFailureHandler.class);
37 
38        @Override
39        public void onReadError(Exception ex) {
40                try {
41                        logger.error("Error encountered while reading", ex);
42                } catch (Exception exception) {
43                        logger.error("Invalid type for logging: [" + exception.toString()
44                                        + "]");
45                }
46        }
47 
48        @Override
49        public void onWriteError(Exception ex, List<? extends Object> item) {
50                try {
51                        logger.error("Error encountered while writing item: [ " + item + "]", ex);
52                } catch (Exception exception) {
53                        logger.error("Invalid type for logging: [" + exception.toString()
54                                        + "]");
55                }
56        }
57 
58}

[all classes][org.springframework.batch.core.step.item]
EMMA 2.0.5312 (C) Vladimir Roubtsov