|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectfr.paris.lutece.portal.service.resource.ExtendableResourceActionHit
public final class ExtendableResourceActionHit
Class to notify listeners of actions performed on resources. Listeners keep at least track of the number of actions performed over a given resource.
Field Summary | |
---|---|
static String |
ACTION_ARCHIVE
Archive action |
static String |
ACTION_CREATION
Creation action |
static String |
ACTION_DELETE
Delete action |
static String |
ACTION_DOWNLOAD
Download action |
static String |
ACTION_UPDATE
Update action |
Method Summary | |
---|---|
int |
getActionHit(String strActionName,
String strExtendableResourceType)
Get the total number of hit associated to a given action name and resource type |
static ExtendableResourceActionHit |
getInstance()
Get the service instance |
int |
getResourceActionHit(String strExtendableResourceId,
String strExtendableResourceType,
String strActionName)
Get the number of hit associated with a resource and an action name |
Map<String,Integer> |
getResourceHit(String strExtendableResourceId,
String strExtendableResourceType)
Get the list of action names associated with a number of hit for a given resource |
void |
notifyActionOnResource(String strExtendableResourceId,
String strExtendableResourceType,
String strActionName)
Notify every listeners that an action has been performed on a resource |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
---|
public static final String ACTION_DOWNLOAD
public static final String ACTION_CREATION
public static final String ACTION_UPDATE
public static final String ACTION_ARCHIVE
public static final String ACTION_DELETE
Method Detail |
---|
public static ExtendableResourceActionHit getInstance()
public int getActionHit(String strActionName, String strExtendableResourceType)
strActionName
- The name of the action to get the number of hit ofstrExtendableResourceType
- The resource type to get the hit of
public Map<String,Integer> getResourceHit(String strExtendableResourceId, String strExtendableResourceType)
strExtendableResourceId
- The id of the resourcestrExtendableResourceType
- The type of the resource
public int getResourceActionHit(String strExtendableResourceId, String strExtendableResourceType, String strActionName)
strExtendableResourceId
- The id of the resourcestrExtendableResourceType
- The type of the resourcestrActionName
- The name of the action
public void notifyActionOnResource(String strExtendableResourceId, String strExtendableResourceType, String strActionName)
strExtendableResourceId
- The id of the resource the action was
performed onstrExtendableResourceType
- The type of the resource the action was
performed onstrActionName
- The name of the action that was performed on the
resource. Action names can be any strings, but
the class ExtendableResourceActionHit
exposes standard
action names.
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |