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

org.onetwo.common.db.spi.NamedQueryFile Maven / Gradle / Ivy

package org.onetwo.common.db.spi;

import java.util.Collection;
import java.util.Map;

import org.onetwo.common.db.filequery.FileBaseNamedQueryInfo;
import org.onetwo.common.propconf.ResourceAdapter;

public interface NamedQueryFile {
	public String getKey();
	public String getNamespace();
	public Collection getNamedProperties();
	public FileBaseNamedQueryInfo getNamedProperty(String name);
	public void addAll(Map namedInfos, boolean throwIfExist);
	public void put(String name, FileBaseNamedQueryInfo info, boolean throwIfExist);
	boolean isGlobal();
	
	public ResourceAdapter getSource();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy