All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.rapidoid.config.Config Maven / Gradle / Ivy

/*-
 * #%L
 * rapidoid-commons
 * %%
 * Copyright (C) 2014 - 2017 Nikolche Mihajlovski and contributors
 * %%
 * 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.
 * #L%
 */

package org.rapidoid.config;


import org.rapidoid.annotation.Authors;
import org.rapidoid.annotation.Since;
import org.rapidoid.lambda.Operation;

import java.util.List;
import java.util.Map;
import java.util.Properties;

@Authors("Nikolche Mihajlovski")
@Since("4.1.0")
public interface Config extends BasicConfig {

	@SuppressWarnings("unchecked")
	@Override
	Config sub(String... keys);

	Config sub(List keys);

	Object get(String key);

	boolean is(String key);

	@Override
	Map toMap();

	 Map toMap(Class type);

	void clear();

	void set(String key, Object value);

	void set(String key, Object value, boolean overridenByEnv);

	void remove(String key);

	void assign(Map entries);

	boolean isEmpty();

	void update(Map entries);

	@SuppressWarnings("unchecked")
	void update(Map entries, boolean overridenByEnv);

	Config root();

	Config parent();

	List keys();

	Map toFlatMap();

	Properties toProperties();

	String getFilenameBase();

	Config setFilenameBase(String filenameBase);

	String getPath();

	Config setPath(String path);

	@Deprecated
	void args(List args);

	void applyTo(Object target);

	void reset();

	void invalidate();

	boolean useBuiltInDefaults();

	boolean isInitialized();

	ConfigChanges getChangesSince(Config previousConfig);

	void addChangeListener(Operation configChangeListener);

	void removeChangeListener(Operation configChangeListener);

	Config defaultOrCustom(String name);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy