|
||||||||||
| 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:
- (Action) Type
- Subject -- DSpace object to which the action
applies, e.g. the Collection to which an ADD adds a member.
- Object --
optional, when present it is the other object effected by an action, e.g. the
Item ADDed to a Collection by an ADD.
- detail -- a textual summary of
what changed, content and its significance varies by the combination of
action and subject type.
- timestamp -- exact millisecond timestamp at
which event was logged.
| Field Summary | |
|---|---|
static int |
ADD
|
static int |
CREATE
Event (Action) types |
static int |
DELETE
|
static int |
EVENT_MASK
|
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(Event 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()
|
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 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, equals, finalize, getClass, hashCode, 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 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.ADDsubjectType - 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.ADDsubjectType - 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(Event other)
other - the event to compare this one topublic 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)
text - 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 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 | |||||||||