aboutsummaryrefslogtreecommitdiff
path: root/src/org/traccar/database/QueryExtended.java
diff options
context:
space:
mode:
authorAbyss777 <abyss@fox5.ru>2017-07-31 17:31:42 +0500
committerAbyss777 <abyss@fox5.ru>2017-07-31 17:31:42 +0500
commit01de09dcdf4a746bac66e1f700f8c6eb2c96c6ae (patch)
treeba5b3f3b1c476b47921a1bc7d8cb0595988766bf /src/org/traccar/database/QueryExtended.java
parentae76cbf971bfc9e47ef21e87606dacc7c0e3ddc6 (diff)
downloadtrackermap-server-01de09dcdf4a746bac66e1f700f8c6eb2c96c6ae.tar.gz
trackermap-server-01de09dcdf4a746bac66e1f700f8c6eb2c96c6ae.tar.bz2
trackermap-server-01de09dcdf4a746bac66e1f700f8c6eb2c96c6ae.zip
- Rename QueryAdditional to QueryExtended
- Use Introspector.decapitalize - Replace new lines with spaces - Fixed indentation - Fixed extended query name
Diffstat (limited to 'src/org/traccar/database/QueryExtended.java')
-rw-r--r--src/org/traccar/database/QueryExtended.java27
1 files changed, 27 insertions, 0 deletions
diff --git a/src/org/traccar/database/QueryExtended.java b/src/org/traccar/database/QueryExtended.java
new file mode 100644
index 000000000..07bc2c211
--- /dev/null
+++ b/src/org/traccar/database/QueryExtended.java
@@ -0,0 +1,27 @@
+/*
+ * Copyright 2017 Anton Tananaev (anton@traccar.org)
+ * Copyright 2017 Andrey Kunitsyn (andrey@traccar.org)
+ *
+ * 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.database;
+
+import java.lang.annotation.ElementType;
+import java.lang.annotation.Retention;
+import java.lang.annotation.RetentionPolicy;
+import java.lang.annotation.Target;
+
+@Target(ElementType.METHOD)
+@Retention(RetentionPolicy.RUNTIME)
+public @interface QueryExtended {
+}