org.analogweb.ApplicationContext Maven / Gradle / Ivy
The newest version!
package org.analogweb;
/**
* Context of application.
*
* @author snowgoose
*/
public interface ApplicationContext {
/**
* Obtain application scoped attributes.
*
* @param requiredType
* Type of attribute value.
* @param contextKey
* Key of attribute value.
*
* @return Attribute value.
*/
T getAttribute(Class requiredType, String contextKey);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy