public class Event extends Object implements Serializable
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:
Modifier and Type | Field and Description |
---|---|
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 and Description |
---|
Event(int eventType,
int subjectType,
int subjectID,
int objectType,
int objectID,
String detail)
Constructor.
|
Event(int eventType,
int subjectType,
int subjectID,
int objectType,
int objectID,
String detail,
String[] identifiers)
Constructor.
|
Event(int eventType,
int subjectType,
int subjectID,
String detail)
Constructor.
|
Event(int eventType,
int subjectType,
int subjectID,
String detail,
String[] identifiers)
Constructor.
|
Modifier and Type | Method and Description |
---|---|
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() |
String[] |
getIdentifiers() |
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() |
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
public Event(int eventType, int subjectType, int subjectID, String detail)
Event(int, int, int, java.lang.String, java.lang.String[])
.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, String detail, String[] identifiers)
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.identifiers
- array containing all identifiers of the dso or an empty arraypublic Event(int eventType, int subjectType, int subjectID, int objectType, int objectID, String detail)
Event(int, int, int, int, int, java.lang.String)
instead.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.public Event(int eventType, int subjectType, int subjectID, int objectType, int objectID, String detail, String[] identifiers)
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.identifiers
- array containing all identifiers of the dso or an empty arraypublic boolean equals(Object other)
public 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
SQLException
public 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[] getIdentifiers()
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()
Copyright © 2015 DuraSpace. All Rights Reserved.