File tree Expand file tree Collapse file tree 2 files changed +8
-8
lines changed
spring-batch-infrastructure/src/main/java/org/springframework/batch/item/ldif Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Original file line number Diff line number Diff line change 11/*
2- * Copyright 2005-2023 the original author or authors.
2+ * Copyright 2005-2025 the original author or authors.
33 *
44 * Licensed under the Apache License, Version 2.0 (the "License");
55 * you may not use this file except in compliance with the License.
1616
1717package org .springframework .batch .item .ldif ;
1818
19- import org .slf4j . Logger ;
20- import org .slf4j . LoggerFactory ;
19+ import org .apache . commons . logging . Log ;
20+ import org .apache . commons . logging . LogFactory ;
2121import org .springframework .batch .item .file .ResourceAwareItemReaderItemStream ;
2222import org .springframework .batch .item .support .AbstractItemCountingItemStreamItemReader ;
2323import org .springframework .beans .factory .InitializingBean ;
6666public class LdifReader extends AbstractItemCountingItemStreamItemReader <LdapAttributes >
6767 implements ResourceAwareItemReaderItemStream <LdapAttributes >, InitializingBean {
6868
69- private static final Logger LOG = LoggerFactory . getLogger (LdifReader .class );
69+ private static final Log LOG = LogFactory . getLog (LdifReader .class );
7070
7171 private Resource resource ;
7272
Original file line number Diff line number Diff line change 11/*
2- * Copyright 2005-2023 the original author or authors.
2+ * Copyright 2005-2025 the original author or authors.
33 *
44 * Licensed under the Apache License, Version 2.0 (the "License");
55 * you may not use this file except in compliance with the License.
1515 */
1616package org .springframework .batch .item .ldif ;
1717
18- import org .slf4j . Logger ;
19- import org .slf4j . LoggerFactory ;
18+ import org .apache . commons . logging . Log ;
19+ import org .apache . commons . logging . LogFactory ;
2020import org .springframework .batch .item .file .ResourceAwareItemReaderItemStream ;
2121import org .springframework .batch .item .support .AbstractItemCountingItemStreamItemReader ;
2222import org .springframework .beans .factory .InitializingBean ;
5757public class MappingLdifReader <T > extends AbstractItemCountingItemStreamItemReader <T >
5858 implements ResourceAwareItemReaderItemStream <T >, InitializingBean {
5959
60- private static final Logger LOG = LoggerFactory . getLogger (MappingLdifReader .class );
60+ private static final Log LOG = LogFactory . getLog (MappingLdifReader .class );
6161
6262 private Resource resource ;
6363
You can’t perform that action at this time.
0 commit comments