org.onetwo.common.propconf.ResourceAdapter Maven / Gradle / Ivy
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