Package | Description |
---|---|
com.liferay.portal.kernel.security.permission |
This package defines the portal security permission interfaces and classes.
|
com.liferay.portal.kernel.service.persistence |
This package defines the portal service persistence interfaces, classes, and utilities.
|
Modifier and Type | Method and Description |
---|---|
void |
ResourceActions.checkAction(String name,
String actionId) |
static void |
ResourceActionsUtil.checkAction(String name,
String actionId) |
Modifier and Type | Method and Description |
---|---|
static ResourceAction |
ResourceActionUtil.findByN_A(String name,
String actionId)
Returns the resource action where name = ? and actionId = ? or throws a
NoSuchResourceActionException if it could not be found. |
ResourceAction |
ResourceActionPersistence.findByN_A(String name,
String actionId)
Returns the resource action where name = ? and actionId = ? or throws a
NoSuchResourceActionException if it could not be found. |
static ResourceAction |
ResourceActionUtil.findByName_First(String name,
OrderByComparator<ResourceAction> orderByComparator)
Returns the first resource action in the ordered set where name = ?.
|
ResourceAction |
ResourceActionPersistence.findByName_First(String name,
OrderByComparator<ResourceAction> orderByComparator)
Returns the first resource action in the ordered set where name = ?.
|
static ResourceAction |
ResourceActionUtil.findByName_Last(String name,
OrderByComparator<ResourceAction> orderByComparator)
Returns the last resource action in the ordered set where name = ?.
|
ResourceAction |
ResourceActionPersistence.findByName_Last(String name,
OrderByComparator<ResourceAction> orderByComparator)
Returns the last resource action in the ordered set where name = ?.
|
static ResourceAction[] |
ResourceActionUtil.findByName_PrevAndNext(long resourceActionId,
String name,
OrderByComparator<ResourceAction> orderByComparator)
Returns the resource actions before and after the current resource action in the ordered set where name = ?.
|
ResourceAction[] |
ResourceActionPersistence.findByName_PrevAndNext(long resourceActionId,
String name,
OrderByComparator<ResourceAction> orderByComparator)
Returns the resource actions before and after the current resource action in the ordered set where name = ?.
|
static ResourceAction |
ResourceActionUtil.findByPrimaryKey(long resourceActionId)
Returns the resource action with the primary key or throws a
NoSuchResourceActionException if it could not be found. |
ResourceAction |
ResourceActionPersistence.findByPrimaryKey(long resourceActionId)
Returns the resource action with the primary key or throws a
NoSuchResourceActionException if it could not be found. |
static ResourceAction |
ResourceActionUtil.remove(long resourceActionId)
Removes the resource action with the primary key from the database.
|
ResourceAction |
ResourceActionPersistence.remove(long resourceActionId)
Removes the resource action with the primary key from the database.
|
static ResourceAction |
ResourceActionUtil.removeByN_A(String name,
String actionId)
Removes the resource action where name = ? and actionId = ? from the database.
|
ResourceAction |
ResourceActionPersistence.removeByN_A(String name,
String actionId)
Removes the resource action where name = ? and actionId = ? from the database.
|