Package org.uberfire.security
Interface ResourceAction
-
@JsType public interface ResourceActionAn action represents something that someone can do over a resource. Can vary from a complex UI feature to a low-level action.This interface is intended to be extended by the different
Resourcetypes. It is up to every resource type implementation to define the list of available actions.
-
-
Field Summary
Fields Modifier and Type Field Description static ResourceActionREADThe read action is common to all resource types.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetName()An string representation of the action.
-
-
-
Field Detail
-
READ
static final ResourceAction READ
The read action is common to all resource types.Basically, it refers to the ability to access (view, read, ...) a resource
-
-
Method Detail
-
getName
String getName()
An string representation of the action.
-
-