package com.basic.security.manager; public class IdManager { public static String getId(String tableName) { return DeviceManager.getDeviceId() + tableName; } public static String getId(String tableName, boolean hasDeviceId) { return tableName; } }