Skip to content

Commit 8554a95

Browse files
committed
Update license year and authors
1 parent a142fa9 commit 8554a95

File tree

7 files changed

+17
-4
lines changed

7 files changed

+17
-4
lines changed

spring-cloud-openfeign-core/src/main/java/org/springframework/cloud/openfeign/FeignClientsConfiguration.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2013-2019 the original author or authors.
2+
* Copyright 2013-2020 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.
@@ -55,6 +55,7 @@
5555
/**
5656
* @author Dave Syer
5757
* @author Venil Noronha
58+
* @author Darren Foong
5859
*/
5960
@Configuration(proxyBeanMethods = false)
6061
public class FeignClientsConfiguration {

spring-cloud-openfeign-core/src/main/java/org/springframework/cloud/openfeign/support/PojoJsonSerializationWriter.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,9 @@
2424
import org.springframework.http.MediaType;
2525
import org.springframework.stereotype.Component;
2626

27+
/**
28+
* @author Darren Foong
29+
*/
2730
@Component
2831
public class PojoJsonSerializationWriter extends PojoSerializationWriter {
2932

spring-cloud-openfeign-core/src/main/java/org/springframework/cloud/openfeign/support/PojoSerializationWriter.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,9 @@
2929
import static feign.form.ContentProcessor.CRLF;
3030
import static feign.form.util.PojoUtil.isUserPojo;
3131

32+
/**
33+
* @author Darren Foong
34+
*/
3235
public abstract class PojoSerializationWriter extends AbstractWriter {
3336

3437
@Override

spring-cloud-openfeign-core/src/main/java/org/springframework/cloud/openfeign/support/SpringEncoder.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2013-2019 the original author or authors.
2+
* Copyright 2013-2020 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.
@@ -54,6 +54,7 @@
5454
* @author Scien Jus
5555
* @author Ahmad Mozafarnia
5656
* @author Aaron Whiteside
57+
* @author Darren Foong
5758
*/
5859
public class SpringEncoder implements Encoder {
5960

spring-cloud-openfeign-core/src/main/java/org/springframework/cloud/openfeign/support/SpringMvcContract.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2013-2019 the original author or authors.
2+
* Copyright 2013-2020 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.
@@ -74,6 +74,7 @@
7474
* @author Aram Peres
7575
* @author Olga Maciaszek-Sharma
7676
* @author Aaron Whiteside
77+
* @author Darren Foong
7778
*/
7879
public class SpringMvcContract extends Contract.BaseContract
7980
implements ResourceLoaderAware {

spring-cloud-openfeign-core/src/main/java/org/springframework/cloud/openfeign/support/SpringPojoFormEncoder.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,9 @@
2121

2222
import static feign.form.ContentType.MULTIPART;
2323

24+
/**
25+
* @author Darren Foong
26+
*/
2427
public class SpringPojoFormEncoder extends SpringFormEncoder {
2528

2629
public SpringPojoFormEncoder(PojoSerializationWriter pojoSerializationWriter) {

spring-cloud-openfeign-core/src/test/java/org/springframework/cloud/openfeign/valid/FeignClientTests.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2013-2019 the original author or authors.
2+
* Copyright 2013-2020 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.
@@ -109,6 +109,7 @@
109109
* @author Erik Kringen
110110
* @author Halvdan Hoem Grelland
111111
* @author Aaron Whiteside
112+
* @author Darren Foong
112113
*/
113114
@RunWith(SpringJUnit4ClassRunner.class)
114115
@SpringBootTest(classes = FeignClientTests.Application.class,

0 commit comments

Comments
 (0)