|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectorg.dspace.event.Event
public class Event
An Event object represents a single action that changed one object in the DSpace data model. An "atomic" action at the application or business-logic API level may spawn many of these events.
This class includes tools to help set and use the contents of the event. Note that it describes DSpace data object types in two ways: by the type identifiers in the Constants class, and also by an Event-specific bitmask (used by its internal filters). All public API calls use the Constants version of the data model types.
Note that the type of the event itself is actually descriptive of the action it performs: ADD, MODIFY, etc. The most significant elements of the event are:
| Field Summary | |
|---|---|
static int |
ADD
|
static int |
CREATE
Event (Action) types |
static int |
DELETE
|
static int |
EVENT_MASK
|
static int |
INSTALL
|
static int |
MODIFY
|
static int |
MODIFY_METADATA
|
static int |
REMOVE
|
static int |
SUBJECT_MASK
Index of filter parts in their array: |
| Constructor Summary | |
|---|---|
Event(int eventType,
int subjectType,
int subjectID,
int objectType,
int objectID,
String detail)
Constructor. |
|
Event(int eventType,
int subjectType,
int subjectID,
String detail)
Constructor. |
|
| Method Summary | |
|---|---|
boolean |
equals(Object other)
Compare two events. |
BitSet |
getBitSet()
|
int |
getCurrentUser()
|
String |
getDetail()
|
int |
getDispatcher()
|
int |
getEventType()
|
String |
getEventTypeAsString()
Get the text name of event (action) type. |
String |
getExtraLogInfo()
|
DSpaceObject |
getObject(Context context)
Get the DSpace object which is the "object" of an event. |
int |
getObjectID()
|
int |
getObjectType()
|
String |
getObjectTypeAsString()
|
DSpaceObject |
getSubject(Context context)
Syntactic sugar to get the DSpace object which is the "subject" of an event. |
int |
getSubjectID()
|
int |
getSubjectType()
|
String |
getSubjectTypeAsString()
|
long |
getTimeStamp()
|
String |
getTransactionID()
|
int |
hashCode()
|
static int |
parseEventType(String s)
Interpret named event type. |
static int |
parseObjectType(String s)
Translate a textual DSpace Object type name into an event subject-type mask. |
boolean |
pass(List<int[]> filters)
Test whether this event would pass through a list of filters. |
void |
setBitSet(String consumerName)
Keeps track of which consumers the event has been consumed by. |
void |
setCurrentUser(int uid)
|
void |
setDispatcher(int id)
Set the identifier of the dispatcher that first processed this event. |
void |
setExtraLogInfo(String info)
|
void |
setTransactionID(String tid)
Sets value of transactionID element of the event. |
String |
toString()
|
| Methods inherited from class java.lang.Object |
|---|
clone, finalize, getClass, notify, notifyAll, wait, wait, wait |
| Field Detail |
|---|
public static final int CREATE
public static final int MODIFY
public static final int MODIFY_METADATA
public static final int ADD
public static final int REMOVE
public static final int DELETE
public static final int INSTALL
public static final int SUBJECT_MASK
public static final int EVENT_MASK
| Constructor Detail |
|---|
public Event(int eventType,
int subjectType,
int subjectID,
String detail)
eventType - action type, e.g. Event.ADD.subjectType - DSpace Object Type of subject e.g. Constants.ITEM.subjectID - database ID of subject instance.detail - detail information that depends on context.
public Event(int eventType,
int subjectType,
int subjectID,
int objectType,
int objectID,
String detail)
eventType - action type, e.g. Event.ADD.subjectType - DSpace Object Type of subject e.g. Constants.ITEM.subjectID - database ID of subject instance.objectType - DSpace Object Type of object e.g. Constants.BUNDLE.objectID - database ID of object instance.detail - detail information that depends on context.| Method Detail |
|---|
public boolean equals(Object other)
equals in class Objectother - the event to compare this one to
public int hashCode()
hashCode in class Objectpublic void setDispatcher(int id)
id - the unique (hash code) value characteristic of the dispatcher.
public DSpaceObject getObject(Context context)
throws SQLException
SQLException
public DSpaceObject getSubject(Context context)
throws SQLException
SQLExceptionpublic int getSubjectID()
public int getObjectID()
public int getSubjectType()
public int getObjectType()
public String getSubjectTypeAsString()
public String getObjectTypeAsString()
public static int parseObjectType(String s)
s - text name of object type.
public int getEventType()
public String getEventTypeAsString()
public static int parseEventType(String s)
s - name of event type.
public long getTimeStamp()
public int getDispatcher()
public String getDetail()
public String getTransactionID()
public void setTransactionID(String tid)
tid - new value of transactionID.public void setCurrentUser(int uid)
public int getCurrentUser()
public void setExtraLogInfo(String info)
public String getExtraLogInfo()
public boolean pass(List<int[]> filters)
filters - list of filter masks; each one is an Array of two ints.
public void setBitSet(String consumerName)
consumerName - public BitSet getBitSet()
public String toString()
toString in class Object
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||