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 1
1
/*
2
- * Copyright 2005-2023 the original author or authors.
2
+ * Copyright 2005-2025 the original author or authors.
3
3
*
4
4
* Licensed under the Apache License, Version 2.0 (the "License");
5
5
* you may not use this file except in compliance with the License.
16
16
17
17
package org .springframework .batch .item .ldif ;
18
18
19
- import org .slf4j . Logger ;
20
- import org .slf4j . LoggerFactory ;
19
+ import org .apache . commons . logging . Log ;
20
+ import org .apache . commons . logging . LogFactory ;
21
21
import org .springframework .batch .item .file .ResourceAwareItemReaderItemStream ;
22
22
import org .springframework .batch .item .support .AbstractItemCountingItemStreamItemReader ;
23
23
import org .springframework .beans .factory .InitializingBean ;
66
66
public class LdifReader extends AbstractItemCountingItemStreamItemReader <LdapAttributes >
67
67
implements ResourceAwareItemReaderItemStream <LdapAttributes >, InitializingBean {
68
68
69
- private static final Logger LOG = LoggerFactory . getLogger (LdifReader .class );
69
+ private static final Log LOG = LogFactory . getLog (LdifReader .class );
70
70
71
71
private Resource resource ;
72
72
Original file line number Diff line number Diff line change 1
1
/*
2
- * Copyright 2005-2023 the original author or authors.
2
+ * Copyright 2005-2025 the original author or authors.
3
3
*
4
4
* Licensed under the Apache License, Version 2.0 (the "License");
5
5
* you may not use this file except in compliance with the License.
15
15
*/
16
16
package org .springframework .batch .item .ldif ;
17
17
18
- import org .slf4j . Logger ;
19
- import org .slf4j . LoggerFactory ;
18
+ import org .apache . commons . logging . Log ;
19
+ import org .apache . commons . logging . LogFactory ;
20
20
import org .springframework .batch .item .file .ResourceAwareItemReaderItemStream ;
21
21
import org .springframework .batch .item .support .AbstractItemCountingItemStreamItemReader ;
22
22
import org .springframework .beans .factory .InitializingBean ;
57
57
public class MappingLdifReader <T > extends AbstractItemCountingItemStreamItemReader <T >
58
58
implements ResourceAwareItemReaderItemStream <T >, InitializingBean {
59
59
60
- private static final Logger LOG = LoggerFactory . getLogger (MappingLdifReader .class );
60
+ private static final Log LOG = LogFactory . getLog (MappingLdifReader .class );
61
61
62
62
private Resource resource ;
63
63
You can’t perform that action at this time.
0 commit comments