Class ActivityLogRecordJson
- java.lang.Object
-
- com.blackberry.workspaces.sdk.api.json.BaseJson
-
- com.blackberry.workspaces.sdk.api.json.ActivityLogRecordJson
-
- All Implemented Interfaces:
Serializable
public class ActivityLogRecordJson extends BaseJson
A single record the represents an activity of a user on a file used in reports- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ActivityLogRecordJson()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getActionType()
String
getActivity()
Different activities of the file: added recipients, opened, etc.String
getCoordinates()
Location coordinates [optional]String
getDetails()
Detail of the activity [optional]String
getDevice()
Device name where activity was performed [optional]String
getDocumentUuid()
the file UUIDString
getEmail()
User's emailString
getIp()
IP of activityString
getLocation()
Location of activity: city, country [optional]String
getOwnerEmail()
String
getOwnerName()
Date
getTime()
Time of activityString
getUser()
User's name (me in case of the owner)String
getVersionUuid()
the version UUIDvoid
setActionType(String actionType)
void
setActivity(String activity)
Different activities of the file: added recipients, opened, etc.void
setCoordinates(String coordinates)
Location coordinates [optional]void
setDetails(String details)
Detail of the activity [optional]void
setDevice(String device)
Device name where activity was performed [optional]void
setDocumentUuid(String documentUuid)
the file UUIDvoid
setEmail(String email)
User's emailvoid
setIp(String ip)
IP of activityvoid
setLocation(String location)
Location of activity: city, country [optional]void
setOwnerEmail(String ownerEmail)
void
setOwnerName(String ownerName)
void
setTime(Date time)
Time of activityvoid
setUser(String user)
User's name (me in case of the owner)void
setVersionUuid(String versionUuid)
the version UUID-
Methods inherited from class com.blackberry.workspaces.sdk.api.json.BaseJson
getObjType, setObjType, toString
-
-
-
-
Method Detail
-
getVersionUuid
public String getVersionUuid()
the version UUID- Returns:
- the version UUID
-
setVersionUuid
public void setVersionUuid(String versionUuid)
the version UUID- Parameters:
versionUuid
- the version UUID
-
getActivity
public String getActivity()
Different activities of the file: added recipients, opened, etc.- Returns:
- Different activities of the file: added recipients, opened, etc.
-
setActivity
public void setActivity(String activity)
Different activities of the file: added recipients, opened, etc.- Parameters:
activity
- Different activities of the file: added recipients, opened, etc.
-
getIp
public String getIp()
IP of activity- Returns:
- IP of activity
-
setIp
public void setIp(String ip)
IP of activity- Parameters:
ip
- IP of activity
-
getDocumentUuid
public String getDocumentUuid()
the file UUID- Returns:
- the file UUID
-
setDocumentUuid
public void setDocumentUuid(String documentUuid)
the file UUID- Parameters:
documentUuid
- the file UUID
-
getCoordinates
public String getCoordinates()
Location coordinates [optional]- Returns:
- Location coordinates [optional]
-
setCoordinates
public void setCoordinates(String coordinates)
Location coordinates [optional]- Parameters:
coordinates
- Location coordinates [optional]
-
getOwnerEmail
public String getOwnerEmail()
-
setOwnerEmail
public void setOwnerEmail(String ownerEmail)
-
getActionType
public String getActionType()
-
setActionType
public void setActionType(String actionType)
-
getOwnerName
public String getOwnerName()
-
setOwnerName
public void setOwnerName(String ownerName)
-
getLocation
public String getLocation()
Location of activity: city, country [optional]- Returns:
- Location of activity: city, country [optional]
-
setLocation
public void setLocation(String location)
Location of activity: city, country [optional]- Parameters:
location
- Location of activity: city, country [optional]
-
getDetails
public String getDetails()
Detail of the activity [optional]- Returns:
- Detail of the activity [optional]
-
setDetails
public void setDetails(String details)
Detail of the activity [optional]- Parameters:
details
- Detail of the activity [optional]
-
getTime
public Date getTime()
Time of activity- Returns:
- Time of activity
-
setTime
public void setTime(Date time)
Time of activity- Parameters:
time
- Time of activity
-
getDevice
public String getDevice()
Device name where activity was performed [optional]- Returns:
- Device name where activity was performed [optional]
-
setDevice
public void setDevice(String device)
Device name where activity was performed [optional]- Parameters:
device
- Device name where activity was performed [optional]
-
getUser
public String getUser()
User's name (me in case of the owner)- Returns:
- User's name (me in case of the owner)
-
setUser
public void setUser(String user)
User's name (me in case of the owner)- Parameters:
user
- User's name (me in case of the owner)
-
getEmail
public String getEmail()
User's email- Returns:
- User's email
-
setEmail
public void setEmail(String email)
User's email- Parameters:
email
- User's email
-
-