From b175699d497967a9105425bf288d833ce96973e2 Mon Sep 17 00:00:00 2001 From: Anton Tananaev Date: Tue, 1 Dec 2015 13:22:25 +1300 Subject: Remove unused methods and classes --- src/org/traccar/api/UserPrincipal.java | 15 ---------- src/org/traccar/helper/Clazz.java | 21 -------------- src/org/traccar/helper/CommandCall.java | 51 --------------------------------- 3 files changed, 87 deletions(-) delete mode 100644 src/org/traccar/helper/CommandCall.java (limited to 'src/org/traccar') 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 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 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 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 { - - 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; - } - -} -- cgit v1.2.3