com.ibm.commerce.catalogmanagement.commands
Interface CatGroupCatEntryRelDeleteCmd

All Superinterfaces:
AccCommand, ControllerCommand, ECCommand, Protectable
All Known Implementing Classes:
CatGroupCatEntryRelDeleteCmdImpl

public interface CatGroupCatEntryRelDeleteCmd
extends ControllerCommand

The CatGroupCatEntryRelDeleteCmd is a URL and controller command that:

Parameters: Access Beans: Task Commands: DeleteCatgpenrelCmd Other Controller Commands: None. Mandatory Parameters: catalogId, catgroupId, catentryId, masterCatalog. Additional Parameters: None. Optional Parameters: URL.

Field Summary
static java.lang.String CLASSNAME
Defines the CLASSNAME.
static java.lang.String COPYRIGHT
The internal copyright field.
Fields inherited from interface com.ibm.commerce.command.ECCommand
defaultCommandClassName
Method Summary
java.lang.Long getCatalogId()
Gets the catalog ID for the catalog group to catalog entry relationship.
java.lang.Long getCatentryId()
Gets the catalog entry ID for the catalog group to catalog entry relationship.
java.lang.Long getCatgroupId()
Gets the catalog group ID for the catalog group to catalog entry relationship.
void setCatalogId(java.lang.Long anCatalogId)
Sets the catalog ID for the catalog group to catalog entry relationship.
void setCatentryId(java.lang.Long anCatentryId)
Sets the catalog entry ID for the catalog group to catalog entry relationship.
void setCatgroupId(java.lang.Long anCatgroupId)
Sets the catalog group ID for the catalog group to catalog entry relationship.
void setRule(java.lang.String astrRule)
Sets the personalization rule for dynamic grouping.
void setSequence(java.lang.Double adSequence)
Sets the sequence number.
void setURL(java.lang.String astrURL)
Sets the redirect URL.
Methods inherited from interface com.ibm.commerce.command.ControllerCommand
checkPermission, execute, getGeneric, getRequestProperties, getResolvedRequestProperties, getResponseProperties, getRetriable, getViewInputProperties, isGeneric, isRetriable, mergeProperties, setGeneric, setRequestProperties, setRetriable, setViewInputProperties
Methods inherited from interface com.ibm.commerce.command.AccCommand
accessControlCheck, getAccCheck, getForUserId, getResourceOwners, setAccCheck, setForUserId, setOwner
Methods inherited from interface com.ibm.commerce.command.ECCommand
checkIsAllowed, checkResourcePermission, createCommandExecutionEvent, getCommandContext, getCommandIfName, getCommandName, getCommandStoreId, getDefaultProperties, getResources, getStoreId, getUser, getUserId, performExecute, setCommandContext, setCommandIfName, setCommandStoreId, setDefaultProperties, validateParameters
Methods inherited from interface com.ibm.commerce.security.Protectable
fulfills, getOwner
Field Detail

COPYRIGHT

public static final java.lang.String COPYRIGHT
The internal copyright field.
See Also:
Constant Field Values

CLASSNAME

public static final java.lang.String CLASSNAME
Defines the CLASSNAME.
See Also:
Constant Field Values
Method Detail

setCatalogId

public void setCatalogId(java.lang.Long anCatalogId)
Sets the catalog ID for the catalog group to catalog entry relationship. Catalog ID must be supplied for the command.
Parameters:
anCatalogId - the catalog ID

setCatentryId

public void setCatentryId(java.lang.Long anCatentryId)
Sets the catalog entry ID for the catalog group to catalog entry relationship. Catalog entry ID can be generic (*).
Parameters:
anCatentryId - the catalog entry ID

setCatgroupId

public void setCatgroupId(java.lang.Long anCatgroupId)
Sets the catalog group ID for the catalog group to catalog entry relationship. Catalog group ID can be generic (*).
Parameters:
anCatgroupId - the catalog group ID

setRule

public void setRule(java.lang.String astrRule)
Sets the personalization rule for dynamic grouping. This is not used to determine which relationship to delete.
Parameters:
astrRule - the rule

setSequence

public void setSequence(java.lang.Double adSequence)
Sets the sequence number. This is not used to determine which relationship to delete.
Parameters:
adSequence - the sequence number of the relationship

setURL

public void setURL(java.lang.String astrURL)
Sets the redirect URL.
Parameters:
astrURL - the redirect URL

getCatalogId

public java.lang.Long getCatalogId()
Gets the catalog ID for the catalog group to catalog entry relationship.
Returns:
the catalog ID

getCatentryId

public java.lang.Long getCatentryId()
Gets the catalog entry ID for the catalog group to catalog entry relationship.
Returns:
the catalog entry ID

getCatgroupId

public java.lang.Long getCatgroupId()
Gets the catalog group ID for the catalog group to catalog entry relationship.
Returns:
the catalog group ID

Feedback