From 7f02b21b235f8c7868b6aa080b983dd33ea74326 Mon Sep 17 00:00:00 2001 From: Laurie White Date: Wed, 27 Apr 2016 17:18:37 -0700 Subject: [PATCH] Added licenses --- appengine/taskqueue-push/pom.xml | 2 +- .../appengine/taskqueue/push/Enqueue.java | 14 ++++++++++++++ .../appengine/taskqueue/push/Worker.java | 15 ++++++++++++++- .../src/main/webapp/WEB-INF/appengine-web.xml | 17 ++++++++++++++++- .../src/main/webapp/WEB-INF/web.xml | 17 ++++++++++++++++- .../taskqueue-push/src/main/webapp/index.html | 16 ++++++++++++++++ .../appengine/taskqueue/push/WorkerTest.java | 14 ++++++++++++++ 7 files changed, 91 insertions(+), 4 deletions(-) diff --git a/appengine/taskqueue-push/pom.xml b/appengine/taskqueue-push/pom.xml index bc939319312..197dd0b3ef5 100644 --- a/appengine/taskqueue-push/pom.xml +++ b/appengine/taskqueue-push/pom.xml @@ -1,6 +1,6 @@ YOUR-PROJECT-ID YOUR-VERSION-ID diff --git a/appengine/taskqueue-push/src/main/webapp/WEB-INF/web.xml b/appengine/taskqueue-push/src/main/webapp/WEB-INF/web.xml index 2221fefb848..c7c7ab97bc4 100644 --- a/appengine/taskqueue-push/src/main/webapp/WEB-INF/web.xml +++ b/appengine/taskqueue-push/src/main/webapp/WEB-INF/web.xml @@ -1,4 +1,19 @@ - + + diff --git a/appengine/taskqueue-push/src/main/webapp/index.html b/appengine/taskqueue-push/src/main/webapp/index.html index e52c367ea7a..f03eaa5f8a8 100644 --- a/appengine/taskqueue-push/src/main/webapp/index.html +++ b/appengine/taskqueue-push/src/main/webapp/index.html @@ -1,3 +1,19 @@ + + diff --git a/appengine/taskqueue-push/src/test/java/com/example/appengine/taskqueue/push/WorkerTest.java b/appengine/taskqueue-push/src/test/java/com/example/appengine/taskqueue/push/WorkerTest.java index 3249d3079be..9dec78c9700 100644 --- a/appengine/taskqueue-push/src/test/java/com/example/appengine/taskqueue/push/WorkerTest.java +++ b/appengine/taskqueue-push/src/test/java/com/example/appengine/taskqueue/push/WorkerTest.java @@ -1,3 +1,17 @@ +/* Copyright 2016 Google Inc. All Rights Reserved. + * + * 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 com.example.appengine.taskqueue.push; import static com.google.common.truth.Truth.assertThat;