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

org.onetwo.common.propconf.ResourceAdapter Maven / Gradle / Ivy

There is a newer version: 4.7.2
Show newest version
package org.onetwo.common.propconf;

import java.io.File;
import java.util.List;

public interface ResourceAdapter {
	public String getName();
//	public String getPath();
	public T getResource();
	
	public File getFile();
	
	public boolean isSupportedToFile();
	
	public List readAsList();
	
	public String getPostfix();
	
//	public boolean isURL();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy