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

com.jdon.controller.context.AppContextWrapper Maven / Gradle / Ivy

package com.jdon.controller.context;

import java.io.InputStream;

public interface AppContextWrapper {

	InputStream getResourceAsStream(String name);

	String getInitParameter(String key);

	Object getAttribute(String key);

	void setAttribute(String key, Object o);

	void removeAttribute(String key);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy