/* * Copyright 2019 - 2022 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.config; import java.util.List; public abstract class ConfigSuffix { protected final String keySuffix; protected final List types; protected final T defaultValue; ConfigSuffix(String keySuffix, List types, T defaultValue) { this.keySuffix = keySuffix; this.types = types; this.defaultValue = defaultValue; } public abstract ConfigKey withPrefix(String prefix); } class StringConfigSuffix extends ConfigSuffix { StringConfigSuffix(String key, List types) { super(key, types, null); } StringConfigSuffix(String key, List types, String defaultValue) { super(key, types, defaultValue); } @Override public ConfigKey withPrefix(String prefix) { return new StringConfigKey(prefix + keySuffix, types, defaultValue); } } class BooleanConfigSuffix extends ConfigSuffix { BooleanConfigSuffix(String key, List types) { super(key, types, null); } BooleanConfigSuffix(String key, List types, Boolean defaultValue) { super(key, types, defaultValue); } @Override public ConfigKey withPrefix(String prefix) { return new BooleanConfigKey(prefix + keySuffix, types, defaultValue); } } class IntegerConfigSuffix extends ConfigSuffix { IntegerConfigSuffix(String key, List types) { super(key, types, null); } IntegerConfigSuffix(String key, List types, Integer defaultValue) { super(key, types, defaultValue); } @Override public ConfigKey withPrefix(String prefix) { return new IntegerConfigKey(prefix + keySuffix, types, defaultValue); } } class LongConfigSuffix extends ConfigSuffix { LongConfigSuffix(String key, List types) { super(key, types, null); } LongConfigSuffix(String key, List types, Long defaultValue) { super(key, types, defaultValue); } @Override public ConfigKey withPrefix(String prefix) { return new LongConfigKey(prefix + keySuffix, types, defaultValue); } } class DoubleConfigSuffix extends ConfigSuffix { DoubleConfigSuffix(String key, List types) { super(key, types, null); } DoubleConfigSuffix(String key, List types, Double defaultValue) { super(key, types, defaultValue); } @Override public ConfigKey withPrefix(String prefix) { return new DoubleConfigKey(prefix + keySuffix, types, defaultValue); } }