| Modifier and Type | Method and Description |
|---|---|
ActionFactory |
ActionSpecification.getActionFactory()
Gets the ActionFactory instance implementation corresponding
to the ActionClassName, that is used as a factory for subsequent
Action instances (pre and post execution).
|
| Modifier and Type | Class and Description |
|---|---|
class |
ActionAdapter
An ActionAdapter is an abstract class that implements the Action Interface,
and contains common utilities used by many of its subclasses.
|
class |
ConverseAction
A ConverseAction is a specific type of MessageAction used
for Conversations.
|
class |
CreateAction
A CreateAction is used to perform or reflect an action taken by
an Actor to initially create the ActivityRecord.
|
class |
CreateConversationAction
A CreateConversationAction is subclass of CreateAction used to
record information about the creation of a Conversation.
|
class |
DeleteAction
A DeleteAction is used to perform or reflect an action taken by
an Actor to delete an ActivityRecord.
|
class |
IncludeActorAction
A IncludeActorAction is used to perform or reflect an action taken by
an Actor to include other Actors within the context of an ActivityRecord.
|
class |
MessageAction
A MessageAction is used to perform or reflect an action taken by
an Actor to add MessageEntries to the main MessageList of an ActivityRecord.
|
class |
RecommendAction
A RecommendAction is used to perform or reflect an action taken by
an Actor to recommend an ActivityRecord to another Actor.
|
class |
UpdateAction
An UpdateAction is used to perform or reflect an action taken by
an Actor to initially update the ActivityRecord.
|
| Constructor and Description |
|---|
ActionAdapter(ActionFactory factory)
Constructs a ActionAdapter to be used to execute a new Action.
|
ActionAdapter(ActionFactory factory,
AuditEvent event)
Constructs a FollowAction reflecting a previously executed Action.
|
ConverseAction(ActionFactory factory)
Constructs a "pending" ConverseAction, to be used to execute a new Action.
|
ConverseAction(ActionFactory factory,
AuditEvent event)
Constructs an "executed" ConverseAction, reflecting a previously
executed Action.
|
CreateAction(ActionFactory factory)
Constructs a "pending" CreateAction, to be used to execute a new Action.
|
CreateAction(ActionFactory factory,
AuditEvent event)
Constructs an "executed" CreateAction, reflecting a previously
executed Action.
|
CreateConversationAction(ActionFactory factory)
Constructs a "pending" CreateConversationAction, to be used to execute a new Action.
|
CreateConversationAction(ActionFactory factory,
AuditEvent event)
Constructs an "executed" CreateConversationAction, reflecting a previously
executed Action.
|
DeleteAction(ActionFactory factory)
Constructs a "pending" DeleteAction, to be used to execute a new Action.
|
DeleteAction(ActionFactory factory,
AuditEvent event)
Constructs an "executed" DeleteAction, reflecting a previously
executed Action.
|
IncludeActorAction(ActionFactory factory)
Constructs a "pending" IncludeActorAction, to be used to execute a new Action.
|
IncludeActorAction(ActionFactory factory,
AuditEvent event)
Constructs an "executed" IncludeActorAction, reflecting a previously
executed Action.
|
MessageAction(ActionFactory factory)
Constructs a "pending" MessageAction, to be used to execute a new Action.
|
MessageAction(ActionFactory factory,
AuditEvent event)
Constructs an "executed" MessageAction, reflecting a previously
executed Action.
|
RecommendAction(ActionFactory factory)
Constructs a "pending" RecommendAction, to be used to execute a new Action.
|
RecommendAction(ActionFactory factory,
AuditEvent event)
Constructs an "executed" RecommendAction, reflecting a previously
executed Action.
|
UpdateAction(ActionFactory factory)
Constructs a "pending" UpdateAction, to be used to execute a new Action.
|
UpdateAction(ActionFactory factory,
AuditEvent event)
Constructs an "executed" UpdateAction, reflecting a previously
executed Action.
|
| Modifier and Type | Class and Description |
|---|---|
class |
CommentAction
A CommentAction is a specific type of MessageAction used
for social comments to an ActivityRecord.
|
class |
FollowAction
A FollowAction is used to perform or reflect an action taken by
an Actor to indicate that the Actor wants to "follow" an item.
|
class |
LikeAction
A LikeAction is used to perform or reflect an action taken by
an Actor to indicate that the Actor "likes" an item.
|
| Constructor and Description |
|---|
CommentAction(ActionFactory factory)
Constructs a "pending" CommentAction, to be used to execute a new Action.
|
CommentAction(ActionFactory factory,
AuditEvent event)
Constructs an "executed" CommentAction, reflecting a previously
executed Action.
|
FollowAction(ActionFactory factory)
Constructs a "pending" FollowAction, to be used to execute a new Action.
|
FollowAction(ActionFactory factory,
AuditEvent event)
Constructs an "executed" FollowAction, reflecting a previously
executed Action.
|
LikeAction(ActionFactory factory)
Constructs a "pending" LikeAction, to be used to execute a new Action.
|
LikeAction(ActionFactory factory,
AuditEvent event)
Constructs an "executed" LikeAction, reflecting a previously
executed Action.
|
| Modifier and Type | Class and Description |
|---|---|
class |
CreateCommunityAction
A CreateCommunityAction is subclass of CreateAction used to
record information about the creation of a Community.
|
class |
CreateInvitationAction
A CreateInvitationAction is subclass of CreateAction used to
record information about the creation of an Invitation.
|
class |
CreatePostingAction
A CreatePostingAction is subclass of CreateAction used to
record information about the creation of a Posting.
|
class |
DeletePostingAction
A DeletePostingAction is subclass of DeleteAction used to
record information about the deletion of a Posting.
|
class |
DocumentUpdateAction
A DocumentUpdateAction is used to perform or reflect an action taken
by an Actor that has added a new Document version to a Posting within a
Community.
|
class |
InviteAction
An InviteAction is used to perform or reflect an action taken by
an Actor to add or update Invitations within a Community.
|
class |
JoinAction
A JoinAction is used to perform or reflect an action taken by
an Actor to become a member of a Community, or cancel the membership.
|
class |
PostAction
A PostAction is used to perform or reflect an action taken by
an Actor to add or remove Postings from a Community.
|
class |
RecommendMembershipAction
A RecommendMembershipAction is subclass of RecommendAction used to record
information about the recommending Community membership to another Actor.
|
class |
RsvpAction
A RsvpAction is used to perform or reflect an action taken by
an Actor to indicate that the Actor replied to an invite.
|
class |
UpdateInvitationAction
A UpdateInvitationAction is subclass of UpdateAction used to
record information about the update of an Invitation.
|
| Constructor and Description |
|---|
CreateCommunityAction(ActionFactory factory)
Constructs a "pending" CreateCommunityAction, to be used to execute a new Action.
|
CreateCommunityAction(ActionFactory factory,
AuditEvent event)
Constructs an "executed" CreateCommunityAction, reflecting a previously
executed Action.
|
CreateInvitationAction(ActionFactory factory)
Constructs a "pending" CreateInvitationAction, to be used to execute a new Action.
|
CreateInvitationAction(ActionFactory factory,
AuditEvent event)
Constructs an "executed" CreateInvitationAction, reflecting a previously
executed Action.
|
CreatePostingAction(ActionFactory factory)
Constructs a "pending" CreatePostingAction, to be used to execute a new Action.
|
CreatePostingAction(ActionFactory factory,
AuditEvent event)
Constructs an "executed" CreatePostingAction, reflecting a previously
executed Action.
|
DeletePostingAction(ActionFactory factory)
Constructs a "pending" DeletePostingAction, to be used to execute a new Action.
|
DeletePostingAction(ActionFactory factory,
AuditEvent event)
Constructs an "executed" DeletePostingAction, reflecting a previously
executed Action.
|
DocumentUpdateAction(ActionFactory factory)
Constructs a "pending" DocumentUpdateAction, to be used to execute a new Action.
|
DocumentUpdateAction(ActionFactory factory,
AuditEvent event)
Constructs an "executed" DocumentUpdateAction, reflecting a previously
executed Action.
|
InviteAction(ActionFactory factory)
Constructs a "pending" InviteAction, to be used to execute a new Action.
|
InviteAction(ActionFactory factory,
AuditEvent event)
Constructs an "executed" InviteAction, reflecting a previously
executed Action.
|
JoinAction(ActionFactory factory)
Constructs a "pending" JoinAction, to be used to execute a new Action.
|
JoinAction(ActionFactory factory,
AuditEvent event)
Constructs an "executed" JoinAction, reflecting a previously
executed Action.
|
PostAction(ActionFactory factory)
Constructs a "pending" PostAction, to be used to execute a new Action.
|
PostAction(ActionFactory factory,
AuditEvent event)
Constructs an "executed" PostAction, reflecting a previously
executed Action.
|
RecommendMembershipAction(ActionFactory factory)
Constructs a "pending" RecommendMembershipAction, to be used to execute a
new Action.
|
RecommendMembershipAction(ActionFactory factory,
AuditEvent event)
Constructs an "executed" RecommendMembershipAction, reflecting a
previously executed Action.
|
RsvpAction(ActionFactory factory)
Constructs a "pending" RsvpAction, to be used to execute a new Action.
|
RsvpAction(ActionFactory factory,
AuditEvent event)
Constructs an "executed" RsvpAction, reflecting a previously
executed Action.
|
UpdateInvitationAction(ActionFactory factory)
Constructs a "pending" UpdateInvitationAction, to be used to execute a new Action.
|
UpdateInvitationAction(ActionFactory factory,
AuditEvent event)
Constructs an "executed" UpdateInvitationAction, reflecting a previously
executed Action.
|
| Modifier and Type | Class and Description |
|---|---|
class |
BinaryDeviceAction
A BinaryDeviceAction is used to perform or reflect an action taken by
an Actor to indicate that the state of a BinaryDevice changed.
|
class |
CreateDoorAction
A CreateDoorAction is subclass of CreateAction used to
record information about the creation of a Door.
|
class |
CreateGatewayAction
A CreateGatewayAction is subclass of CreateAction used to
record information about the creation of a Gateway.
|
class |
CreateLightAction
A CreateLightAction is subclass of CreateAction used to
record information about the creation of a Light.
|
class |
CreateSwitchAction
A CreateSwitchAction is subclass of CreateAction used to
record information about the creation of a Switch.
|
class |
GatewayAction
A GatewayAction is used to perform or reflect an action taken by
an Actor to add BinaryDevices to a Gateway.
|
| Constructor and Description |
|---|
BinaryDeviceAction(ActionFactory factory)
Constructs a "pending" BinaryDeviceAction, to be used to execute a new Action.
|
BinaryDeviceAction(ActionFactory factory,
AuditEvent event)
Constructs an "executed" BinaryDeviceAction, reflecting a previously
executed Action.
|
CreateDoorAction(ActionFactory factory)
Constructs a "pending" CreateDoorAction, to be used to execute a new Action.
|
CreateDoorAction(ActionFactory factory,
AuditEvent event)
Constructs an "executed" CreateDoorAction, reflecting a previously
executed Action.
|
CreateGatewayAction(ActionFactory factory)
Constructs a "pending" CreateGatewayAction, to be used to execute a new Action.
|
CreateGatewayAction(ActionFactory factory,
AuditEvent event)
Constructs an "executed" CreateGatewayAction, reflecting a previously
executed Action.
|
CreateLightAction(ActionFactory factory)
Constructs a "pending" CreateLightAction, to be used to execute a new Action.
|
CreateLightAction(ActionFactory factory,
AuditEvent event)
Constructs an "executed" CreateLightAction, reflecting a previously
executed Action.
|
CreateSwitchAction(ActionFactory factory)
Constructs a "pending" CreateSwitchAction, to be used to execute a new Action.
|
CreateSwitchAction(ActionFactory factory,
AuditEvent event)
Constructs an "executed" CreateSwitchAction, reflecting a previously
executed Action.
|
GatewayAction(ActionFactory factory)
Constructs a "pending" GatewayAction, to be used to execute a new Action.
|
GatewayAction(ActionFactory factory,
AuditEvent event)
Constructs an "executed" GatewayAction, reflecting a previously
executed Action.
|
| Modifier and Type | Class and Description |
|---|---|
class |
CreateSmartHomeAction
A CreateSmartHomeAction is subclass of CreateAction used to
record information about the creation of a SmartHome.
|
class |
CreateSmartHomeItemAction
A CreateSmartHomeItemAction is subclass of CreateAction used to
record information about the creation of a SmartHomeItem.
|
class |
SmartHomeAction
A SmartHomeAction is used to perform or reflect an action taken by
an Actor to add SmartHomeItems to a SmartHome.
|
class |
StateChangeAction
A StateChangeAction is used to perform or reflect an action taken by
an Actor to indicate that the state of a SmartHomeItem changed.
|
| Constructor and Description |
|---|
CreateSmartHomeAction(ActionFactory factory)
Constructs a "pending" CreateSmartHomeAction, to be used to execute a new Action.
|
CreateSmartHomeAction(ActionFactory factory,
AuditEvent event)
Constructs an "executed" CreateSmartHomeAction, reflecting a previously
executed Action.
|
CreateSmartHomeItemAction(ActionFactory factory)
Constructs a "pending" CreateSmartHomeItemAction, to be used to execute a new Action.
|
CreateSmartHomeItemAction(ActionFactory factory,
AuditEvent event)
Constructs an "executed" CreateSmartHomeItemAction, reflecting a previously
executed Action.
|
SmartHomeAction(ActionFactory factory)
Constructs a "pending" SmartHomeAction, to be used to execute a new Action.
|
SmartHomeAction(ActionFactory factory,
AuditEvent event)
Constructs an "executed" SmartHomeAction, reflecting a previously
executed Action.
|
StateChangeAction(ActionFactory factory)
Constructs a "pending" StateChangeAction, to be used to execute a new Action.
|
StateChangeAction(ActionFactory factory,
AuditEvent event)
Constructs an "executed" StateChangeAction, reflecting a previously
executed Action.
|
Copyright © 2025. All rights reserved.