Skip to content

Commit baba37c

Browse files
author
Dave Syer
authored
Regularize copyright headers (#354)
Signed-off-by: Dave Syer <[email protected]>
1 parent 32bcdcd commit baba37c

11 files changed

+28
-26
lines changed
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
/**
2+
* Provides classes related to working with Cloud Events within the context of Spring and byte buffers.
3+
*/
4+
package io.cloudevents.spring.codec;

spring/src/main/java/io/cloudevents/spring/http/CloudEventHttpUtils.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2019-2019 the original author or authors.
2+
* Copyright 2020-Present The CloudEvents 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.

spring/src/main/java/io/cloudevents/spring/http/CloudEventsHeaders.java

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,17 @@
11
/*
2-
* Copyright 2018-Present The CloudEvents Authors
3-
* <p>
2+
* Copyright 2020-Present The CloudEvents Authors.
3+
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
66
* You may obtain a copy of the License at
7-
* <p>
8-
* http://www.apache.org/licenses/LICENSE-2.0
9-
* <p>
7+
*
8+
* https://www.apache.org/licenses/LICENSE-2.0
9+
*
1010
* Unless required by applicable law or agreed to in writing, software
1111
* distributed under the License is distributed on an "AS IS" BASIS,
1212
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
15-
*
1615
*/
1716

1817
package io.cloudevents.spring.http;
@@ -37,4 +36,4 @@ public class CloudEventsHeaders {
3736

3837
public static final String SPEC_VERSION = ATTRIBUTES_TO_HEADERS.get("specversion");
3938

40-
}
39+
}

spring/src/main/java/io/cloudevents/spring/messaging/CloudEventContextUtils.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2019-2019 the original author or authors.
2+
* Copyright 2020-Present The CloudEvents 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.

spring/src/main/java/io/cloudevents/spring/messaging/CloudEventMessageConverter.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2019-2019 the original author or authors.
2+
* Copyright 2020-Present The CloudEvents 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.
Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,17 @@
11
/*
2-
* Copyright 2018-Present The CloudEvents Authors
3-
* <p>
2+
* Copyright 2020-Present The CloudEvents Authors.
3+
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
66
* You may obtain a copy of the License at
7-
* <p>
8-
* http://www.apache.org/licenses/LICENSE-2.0
9-
* <p>
7+
*
8+
* https://www.apache.org/licenses/LICENSE-2.0
9+
*
1010
* Unless required by applicable law or agreed to in writing, software
1111
* distributed under the License is distributed on an "AS IS" BASIS,
1212
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
15-
*
1615
*/
1716

1817
package io.cloudevents.spring.messaging;
@@ -25,4 +24,4 @@ public class CloudEventsHeaders {
2524

2625
public static final String CONTENT_TYPE = CE_PREFIX + "datacontenttype";
2726

28-
}
27+
}

spring/src/main/java/io/cloudevents/spring/messaging/MessageBinaryMessageReader.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2019-2019 the original author or authors.
2+
* Copyright 2020-Present The CloudEvents 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.
@@ -27,7 +27,7 @@
2727

2828
/**
2929
* Utility for converting maps (message headers) to `CloudEvent` contexts.
30-
*
30+
*
3131
* @author Dave Syer
3232
*
3333
*/
@@ -70,4 +70,4 @@ protected String toCloudEventsValue(Object value) {
7070
return value.toString();
7171
}
7272

73-
}
73+
}

spring/src/main/java/io/cloudevents/spring/messaging/MessageBuilderMessageWriter.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2019-2019 the original author or authors.
2+
* Copyright 2020-Present The CloudEvents 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.
@@ -32,7 +32,7 @@
3232
/**
3333
* Internal utility class for copying <code>CloudEvent</code> context to a map (message
3434
* headers).
35-
*
35+
*
3636
* @author Dave Syer
3737
*
3838
*/
@@ -76,4 +76,4 @@ public MessageBuilderMessageWriter create(SpecVersion version) {
7676
return this;
7777
}
7878

79-
}
79+
}

spring/src/main/java/io/cloudevents/spring/mvc/CloudEventHttpMessageConverter.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2019-2019 the original author or authors.
2+
* Copyright 2020-Present The CloudEvents 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.

spring/src/main/java/io/cloudevents/spring/webflux/CloudEventHttpMessageReader.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2019-2019 the original author or authors.
2+
* Copyright 2020-Present The CloudEvents 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.

0 commit comments

Comments
 (0)