aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAnton Tananaev <anton.tananaev@gmail.com>2016-08-30 08:16:22 +1200
committerAnton Tananaev <anton.tananaev@gmail.com>2016-08-30 08:16:22 +1200
commite9e587ab105f8741770b8313f8406a28a2e02704 (patch)
tree701bfcbbfc27cedb69fbef2e5c0c433fe0e37b11 /src
parent5a9a1f8eb82f08d8e06bd5a19f0bf3b374860752 (diff)
downloadtraccar-server-e9e587ab105f8741770b8313f8406a28a2e02704.tar.gz
traccar-server-e9e587ab105f8741770b8313f8406a28a2e02704.tar.bz2
traccar-server-e9e587ab105f8741770b8313f8406a28a2e02704.zip
Add missing copyright header
Diffstat (limited to 'src')
-rw-r--r--src/org/traccar/notification/EventForwarder.java17
1 files changed, 16 insertions, 1 deletions
diff --git a/src/org/traccar/notification/EventForwarder.java b/src/org/traccar/notification/EventForwarder.java
index 096026541..3bd7e5cf5 100644
--- a/src/org/traccar/notification/EventForwarder.java
+++ b/src/org/traccar/notification/EventForwarder.java
@@ -1,3 +1,18 @@
+/*
+ * Copyright 2016 Anton Tananaev (anton.tananaev@gmail.com)
+ *
+ * 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 org.traccar.notification;
import java.nio.charset.StandardCharsets;
@@ -33,7 +48,6 @@ public final class EventForwarder {
public void forwardEvent(Event event, Position position) {
-
BoundRequestBuilder requestBuilder = Context.getAsyncHttpClient().preparePost(url);
requestBuilder.addHeader("Content-Type", "application/json; charset=utf-8");
@@ -72,4 +86,5 @@ public final class EventForwarder {
}
return json.build().toString().getBytes(StandardCharsets.UTF_8);
}
+
}