Package com.ibm.commerce.command

Provides the interface and base implementation of WebSphere Commerce commands.

See:
Description

Interface Summary
AccCommand AccCommand defines the interface that is required by a command that implements command level access control.
AsyncCommand AsyncCommand defines the interface that is required by a command that implements the asynchronus command interface.
AttachmentUploadCmd AttachmentUpload will upload file to an inputstream first and then store it into the database as BLOBs in the attachment table Note that this command is not registered in URLREG.
AttachmentViewCmd AttachmentViewCmd retrieves the attachment content from database and return the stream as DirectView to browser.
BusinessPolicyCommand BusinessPolicyCommand provides the base interface for any Business Policy Task Command.
CommandContext The command context contains session and user information.
ControllerCommand The Controller Command interface has to be implemented by all top level command called by a WebController.
CopyAttachmentCmd The CopyAttachmentCmd will make a copy of the attachment object as specified by the org_attachmentobj_id .
DataBeanCommand DataBeanCommand is the interface for defining the contract of all DataBeans commands.
DirectViewCommand DirectViewCommand is the interface for defining a direct view command.
ECCommand ECCommand is the interface that defines the base contract between any command that runs in the WebSphere Commerce Application server and the web controller code that invokes the command.
ECTargetableCommand ECTargetableCommand is the interface that extends the TargetableCommand framework for an ECCommand.
ForwardViewCommand ForwardViewCommand provides the base interface for any forward view command.
HttpViewCommand HttpViewCommand is the base interface that defines the signature of all commands that retrieve views from the database.
HttpViewControllerCommand HttpViewControllerCommand is the base interface that defines the signature of all Commands that process Http views.
IndirectViewCommand IndirectViewCommand provides the base interface for any indirect view command.
RedirectViewCommand RedirectViewCommand is the base interface that defines the signature of all redirect view commands.
TaskCommand TaskCommand is the base interface that defines the signature of all task commands.
TempUploadCmd TempUploadCmd will upload file to a file system with a unique generated filename.
UploadToStreamCmd UploadToStreamCmd will upload the file to an inputstream.
ViewCommand ViewCommand is the base interface that defines the signature of all commands that retrieve views from the database.
WebAssetsUploadCmd WebAssetsUploadCmd will upload the webassets to the filesystem.
Class Summary
AbstractDirectViewCommand This is the abstract base implementation of direct view commands.
AbstractECCommand This is the abstract base class for all commerce ECCommands
AbstractECTargetableCommand This is the abstract base class for all commerce ECTargetableCommands
AbstractForwardViewCommand This class provides the abstract base implementation of a forward view command.
AbstractIndirectViewCommand This class provides the abstract base implementation of an indirect view command.
AbstractRedirectViewCommand The abstract base implementation of all redirect view commands.
AbstractViewCommand The abstract base implementation of a view command.
AsyncControllerCommandImpl AsyncControllerCommandImpl is the default based implementation of a controller command that implements the AsyncCommand interface.
AttachmentUploadCmdImpl The AttachmentUpload will upload File to an inputstream first and then store it into the database as BLOBs in the attachment table Note that this is not registered in URLREG, AttachmentUploadCmd is not intended to be used directly , it should be extended by other commands.
AttachmentViewCmdImpl The AttachmentViewCmdImpl will retrieve the attachment content from database and return the stream as DirectView to browser if the attachmentURL is same as attachment_id If the attachmentURL is not the same as attachment_id, we will assume that the attachment is not stored as BLOB in attachment table in database.
BusinessPolicyCommandImpl Default implementation for a Business Policy Task Command.
CommandContextImpl The command context contains session and user information.
CommandFactory This is the CommandFactory for instantiating Commands
ControllerCommandImpl An abstract base implemention for any controller command.
CopyAttachmentCmdImpl The CopyAttachmentCmdImpl will make a copy of the existing Attachment Object based on the org_attachment_id .
DataBeanCommandImpl This class defines the base behavior for all DataBean commands.
ECCommandTarget This is the CommandTarget for TargetableCommands that are executed in the command client's JVM.
ECStringConverter This is a string converter class for Java primitive types and their object wrappers.
HttpDirectViewCommandImpl This is the default implementation of a http direct view command.
HttpForwardViewCommandImpl This is the default implementation of a Http forward view command.
HttpIndirectForwardViewCommandImpl This is a special implementation of a http indirect view command.
HttpRedirectViewCommandImpl This is the default implementation of a http redirect view commands.
HttpRedirectViewCommandNoEncryptionImpl This is the default implementation of a Http Redirect View commands with no encryption.
HttpsRedirectViewCommandImpl This is the default implementation for an Https redirect view command.
NameValuePair This class is for internal use only.
RedirectViewCommandImpl The abstract base implementation of all redirect view commands.
TaskCommandImpl The abstract base implementation of a task command.
TempUploadCmdImpl The TempUploadCmd will upload File to a file system with a unique generated filename Note that this is not registered in URLREG or CMDREG, TempUPloadCmd is not intended to be used directly , it should be extended by other commands The upload path to be uploaded is $wcsstore\storename\filepath $wcsstore is defined in instance configuration file storename is based on store_id retrieved from command context , i.e.
UploadToStreamCmdImpl The UploadToStreamCmdImpl will upload files to return a stream.
WebAssetsUploadCmdImpl The WebAssetsUploadCmdImpl will upload webassets filesystem.

Package com.ibm.commerce.command Description

Provides the interface and base implementation of WebSphere Commerce commands.


Feedback