Interface EntitiesExplorerView
-
- All Superinterfaces:
com.google.gwt.user.client.ui.IsWidget
- All Known Implementing Classes:
EntitiesExplorerViewImpl
public interface EntitiesExplorerView extends com.google.gwt.user.client.ui.IsWidgetEntities explorer view methods signatures.
- Since:
- 0.8.0
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static interfaceEntitiesExplorerView.ViewCallbackCallback methods for view's user actions.static interfaceEntitiesExplorerView.ViewContextThe context for the entities explorer view.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description EntitiesExplorerViewclear()Clears the view.EntitiesExplorerViewclearSearch()Clears the current search.EntitiesExplorerViewconfigure(String entityType, EntitiesList.View entitiesListView)Configures the explorer's list widget.EntitiesExplorerViewshow(EntitiesExplorerView.ViewContext context, EntitiesExplorerView.ViewCallback callback)Shows the list.EntitiesExplorerViewshowMessage(org.gwtbootstrap3.client.ui.constants.LabelType labelType, String message)Shows a meesage in the entities explorer view.
-
-
-
Method Detail
-
configure
EntitiesExplorerView configure(String entityType, EntitiesList.View entitiesListView)
Configures the explorer's list widget.
- Parameters:
entityType- A string that represents the current exploring type for the entities (eg: user, group). Used in buttons and texts in the explorer.entitiesListView- The view for entities list widget.- Returns:
- The view instance.
- See Also:
- org.uberfire.ext.security.management.client.widgets.management.EntitiesListView
-
show
EntitiesExplorerView show(EntitiesExplorerView.ViewContext context, EntitiesExplorerView.ViewCallback callback)
Shows the list.
- Parameters:
context- The view context.callback- The view callback methods.- Returns:
- The view instance.
- See Also:
- org.uberfire.ext.security.management.client.widgets.management.explorer.EntitiesExplorerView.ViewContext, org.uberfire.ext.security.management.client.widgets.management.explorer.EntitiesExplorerView.ViewCallback
-
showMessage
EntitiesExplorerView showMessage(org.gwtbootstrap3.client.ui.constants.LabelType labelType, String message)
Shows a meesage in the entities explorer view. No entities will be displayed, just the message.
- Parameters:
labelType- The type of the label for the message.message- The message.- Returns:
- The view instance.
-
clearSearch
EntitiesExplorerView clearSearch()
Clears the current search.
- Returns:
- The view instance.
-
clear
EntitiesExplorerView clear()
Clears the view.
- Returns:
- The view instance.
-
-