diff --git a/java-aws-lambda/src/main/java/io/opentracing/contrib/aws/EventSourceParser.java b/java-aws-lambda/src/main/java/io/opentracing/contrib/aws/EventSourceParser.java index 514010b..7d65724 100644 --- a/java-aws-lambda/src/main/java/io/opentracing/contrib/aws/EventSourceParser.java +++ b/java-aws-lambda/src/main/java/io/opentracing/contrib/aws/EventSourceParser.java @@ -1,3 +1,18 @@ +/* + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + package io.opentracing.contrib.aws; import com.amazonaws.services.lambda.runtime.events.APIGatewayProxyRequestEvent; diff --git a/java-aws-lambda/src/main/java/io/opentracing/contrib/aws/HeadersParser.java b/java-aws-lambda/src/main/java/io/opentracing/contrib/aws/HeadersParser.java index 5f7e611..7012388 100644 --- a/java-aws-lambda/src/main/java/io/opentracing/contrib/aws/HeadersParser.java +++ b/java-aws-lambda/src/main/java/io/opentracing/contrib/aws/HeadersParser.java @@ -1,3 +1,18 @@ +/* + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + package io.opentracing.contrib.aws; import com.amazonaws.Request; diff --git a/java-aws-lambda/src/main/java/io/opentracing/contrib/aws/ResponseParser.java b/java-aws-lambda/src/main/java/io/opentracing/contrib/aws/ResponseParser.java index afc3521..1a04ab6 100644 --- a/java-aws-lambda/src/main/java/io/opentracing/contrib/aws/ResponseParser.java +++ b/java-aws-lambda/src/main/java/io/opentracing/contrib/aws/ResponseParser.java @@ -1,3 +1,18 @@ +/* + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + package io.opentracing.contrib.aws; import com.amazonaws.services.lambda.runtime.events.APIGatewayProxyResponseEvent; diff --git a/java-aws-lambda/src/main/java/io/opentracing/contrib/aws/SpanUtil.java b/java-aws-lambda/src/main/java/io/opentracing/contrib/aws/SpanUtil.java index 72ae766..60c742f 100644 --- a/java-aws-lambda/src/main/java/io/opentracing/contrib/aws/SpanUtil.java +++ b/java-aws-lambda/src/main/java/io/opentracing/contrib/aws/SpanUtil.java @@ -1,3 +1,18 @@ +/* + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + package io.opentracing.contrib.aws; import com.amazonaws.services.lambda.runtime.Context; diff --git a/java-aws-lambda/src/main/java/io/opentracing/contrib/aws/TracingRequestHandler.java b/java-aws-lambda/src/main/java/io/opentracing/contrib/aws/TracingRequestHandler.java index 6e3880b..a6a7159 100644 --- a/java-aws-lambda/src/main/java/io/opentracing/contrib/aws/TracingRequestHandler.java +++ b/java-aws-lambda/src/main/java/io/opentracing/contrib/aws/TracingRequestHandler.java @@ -1,3 +1,18 @@ +/* + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + package io.opentracing.contrib.aws; import com.amazonaws.services.lambda.runtime.Context; diff --git a/java-aws-lambda/src/main/java/io/opentracing/contrib/aws/TracingRequestStreamHandler.java b/java-aws-lambda/src/main/java/io/opentracing/contrib/aws/TracingRequestStreamHandler.java index 139c7c4..1ec8f38 100644 --- a/java-aws-lambda/src/main/java/io/opentracing/contrib/aws/TracingRequestStreamHandler.java +++ b/java-aws-lambda/src/main/java/io/opentracing/contrib/aws/TracingRequestStreamHandler.java @@ -1,3 +1,18 @@ +/* + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + package io.opentracing.contrib.aws; import com.amazonaws.services.lambda.runtime.Context; diff --git a/java-aws-lambda/src/test/java/io/opentracing/GlobalTracerTestUtils.java b/java-aws-lambda/src/test/java/io/opentracing/GlobalTracerTestUtils.java index e391555..c4f6042 100644 --- a/java-aws-lambda/src/test/java/io/opentracing/GlobalTracerTestUtils.java +++ b/java-aws-lambda/src/test/java/io/opentracing/GlobalTracerTestUtils.java @@ -1,3 +1,18 @@ +/* + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + package io.opentracing; import io.opentracing.util.GlobalTracer; diff --git a/java-aws-lambda/src/test/java/io/opentracing/contrib/aws/TracingRequestHandlerTest.java b/java-aws-lambda/src/test/java/io/opentracing/contrib/aws/TracingRequestHandlerTest.java index 4ffa717..53a9590 100644 --- a/java-aws-lambda/src/test/java/io/opentracing/contrib/aws/TracingRequestHandlerTest.java +++ b/java-aws-lambda/src/test/java/io/opentracing/contrib/aws/TracingRequestHandlerTest.java @@ -1,3 +1,18 @@ +/* + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + package io.opentracing.contrib.aws; import com.amazonaws.services.lambda.runtime.ClientContext; diff --git a/java-aws-lambda/src/test/java/io/opentracing/contrib/aws/TracingRequestStreamHandlerTest.java b/java-aws-lambda/src/test/java/io/opentracing/contrib/aws/TracingRequestStreamHandlerTest.java index 165f3a7..a48054a 100644 --- a/java-aws-lambda/src/test/java/io/opentracing/contrib/aws/TracingRequestStreamHandlerTest.java +++ b/java-aws-lambda/src/test/java/io/opentracing/contrib/aws/TracingRequestStreamHandlerTest.java @@ -1,3 +1,18 @@ +/* + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + package io.opentracing.contrib.aws; import com.amazonaws.services.lambda.runtime.ClientContext;