com.enonic.xp.context.ScopeAttributes Maven / Gradle / Ivy
The newest version!
package com.enonic.xp.context;
import java.util.Map;
import com.enonic.xp.annotation.PublicApi;
@PublicApi
public interface ScopeAttributes
{
Object getAttribute( String key );
T getAttribute( Class type );
Map getAttributes();
}