aboutsummaryrefslogtreecommitdiff
path: root/src/org
diff options
context:
space:
mode:
authorAnton Tananaev <anton.tananaev@gmail.com>2015-12-01 13:22:25 +1300
committerAnton Tananaev <anton.tananaev@gmail.com>2015-12-01 13:22:25 +1300
commitb175699d497967a9105425bf288d833ce96973e2 (patch)
tree127691c41dd43b2a28e02725768e1f4b13228443 /src/org
parent6c444343d14bd3158bb27285efbcb17141166bff (diff)
downloadtrackermap-server-b175699d497967a9105425bf288d833ce96973e2.tar.gz
trackermap-server-b175699d497967a9105425bf288d833ce96973e2.tar.bz2
trackermap-server-b175699d497967a9105425bf288d833ce96973e2.zip
Remove unused methods and classes
Diffstat (limited to 'src/org')
-rw-r--r--src/org/traccar/api/UserPrincipal.java15
-rw-r--r--src/org/traccar/helper/Clazz.java21
-rw-r--r--src/org/traccar/helper/CommandCall.java51
3 files changed, 0 insertions, 87 deletions
diff --git a/src/org/traccar/api/UserPrincipal.java b/src/org/traccar/api/UserPrincipal.java
index 387b7627c..11a6de629 100644
--- a/src/org/traccar/api/UserPrincipal.java
+++ b/src/org/traccar/api/UserPrincipal.java
@@ -31,18 +31,6 @@ public class UserPrincipal implements Principal {
this.roles = roles;
}
- public UserPrincipal(String username, Set<String> roles) {
- this.username = username;
- this.roles = roles;
- }
-
- public UserPrincipal(String username) {
- this.username = username;
- }
-
- public UserPrincipal() {
- }
-
public Long getId() {
return id;
}
@@ -68,7 +56,4 @@ public class UserPrincipal implements Principal {
return roles;
}
- public void setRoles(Set<String> roles) {
- this.roles = roles;
- }
}
diff --git a/src/org/traccar/helper/Clazz.java b/src/org/traccar/helper/Clazz.java
index ba4c4fded..1a1b445d5 100644
--- a/src/org/traccar/helper/Clazz.java
+++ b/src/org/traccar/helper/Clazz.java
@@ -23,19 +23,6 @@ import java.lang.reflect.Type;
public final class Clazz implements Serializable {
- private static final long serialVersionUID = 4983299355055144885L;
-
- private Clazz() {
- }
-
- public static Class getGenericArgumentType(Class currentClass, Class genericSuperClass) {
- return getGenericArgumentType(currentClass, genericSuperClass, 0);
- }
-
- public static Class getGenericArgumentType(Class currentClass, int argumentIndex) {
- return getGenericArgumentType(currentClass, null, argumentIndex);
- }
-
public static Class getGenericArgumentType(Class currentClass) {
return getGenericArgumentType(currentClass, null, 0);
}
@@ -72,14 +59,6 @@ public final class Clazz implements Serializable {
throw new ClassCastException();
}
- public static Class forName(String className) {
- try {
- return Class.forName(className, false, Thread.currentThread().getContextClassLoader());
- } catch (ClassNotFoundException e) {
- throw new IllegalArgumentException(e);
- }
- }
-
public static <T> long getId(T entity) throws Exception {
Method[] methods = entity.getClass().getMethods();
for (final Method method : methods) {
diff --git a/src/org/traccar/helper/CommandCall.java b/src/org/traccar/helper/CommandCall.java
deleted file mode 100644
index d5da79348..000000000
--- a/src/org/traccar/helper/CommandCall.java
+++ /dev/null
@@ -1,51 +0,0 @@
-/*
- * Copyright 2015 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.helper;
-
-public abstract class CommandCall<T> {
-
- private long userId;
- private T entity;
-
- public void before() throws Exception {
- //Do nothing.
- }
-
- public void check() throws Exception {
- //Do nothing.
- }
-
- public void after() throws Exception {
- //Do nothing.
- }
-
- public long getUserId() {
- return userId;
- }
-
- public void setUserId(long userId) {
- this.userId = userId;
- }
-
- public T getEntity() {
- return entity;
- }
-
- public void setEntity(T entity) {
- this.entity = entity;
- }
-
-}