diff options
author | Anton Tananaev <anton.tananaev@gmail.com> | 2017-02-28 08:09:10 +1300 |
---|---|---|
committer | Anton Tananaev <anton.tananaev@gmail.com> | 2017-02-28 16:11:07 +1300 |
commit | 9120ff19ab2bdd466ae5c30632efd1917faa71b1 (patch) | |
tree | 7cbac795c7f2ec56a5e0ed0e474642a2113222dc /src/org/traccar/database/QueryIgnore.java | |
parent | 39452c3e0af164e6d63696afaf874c13c7ee8b5f (diff) | |
download | trackermap-server-9120ff19ab2bdd466ae5c30632efd1917faa71b1.tar.gz trackermap-server-9120ff19ab2bdd466ae5c30632efd1917faa71b1.tar.bz2 trackermap-server-9120ff19ab2bdd466ae5c30632efd1917faa71b1.zip |
Add separate QueryIgnore annotation (fix #2962)
Diffstat (limited to 'src/org/traccar/database/QueryIgnore.java')
-rw-r--r-- | src/org/traccar/database/QueryIgnore.java | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/src/org/traccar/database/QueryIgnore.java b/src/org/traccar/database/QueryIgnore.java new file mode 100644 index 000000000..ac835cf2f --- /dev/null +++ b/src/org/traccar/database/QueryIgnore.java @@ -0,0 +1,26 @@ +/* + * Copyright 2017 Anton Tananaev (anton@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 QueryIgnore { +} |