Package org.uberfire.workbench.model
Interface SplashScreenFilter
-
- All Known Implementing Classes:
SplashScreenFilterImpl
public interface SplashScreenFilterDescribes the current interception rules for a splash screen, including the user's current preference for whether or not the screen should be displayed next time one of its interception points is matched.All implementations of this interface must be marked as
Portable.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleandisplayNextTime()Collection<String>getInterceptionPoints()StringgetName()voidsetDisplayNextTime(boolean value)voidsetInterceptionPoints(Collection<String> places)voidsetName(String name)
-
-
-
Method Detail
-
getName
String getName()
-
setName
void setName(String name)
-
displayNextTime
boolean displayNextTime()
-
setDisplayNextTime
void setDisplayNextTime(boolean value)
-
getInterceptionPoints
Collection<String> getInterceptionPoints()
-
setInterceptionPoints
void setInterceptionPoints(Collection<String> places)
-
-