com.foreach.across.modules.entity.registry.ConfigurableEntityViewRegistry Maven / Gradle / Ivy
package com.foreach.across.modules.entity.registry;
import com.foreach.across.modules.entity.views.EntityViewFactory;
public interface ConfigurableEntityViewRegistry extends EntityViewRegistry
{
void registerView( String viewName, EntityViewFactory viewFactory );
/**
* Remove a view from the registry.
*
* @param viewName name of the view
*/
void removeView( String viewName );
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy