Class DeleteSandboxRequest
- java.lang.Object
-
- com.broadleafcommerce.bulk.messaging.DeleteSandboxRequest
-
- All Implemented Interfaces:
com.broadleafcommerce.common.messaging.Securable,Serializable
public class DeleteSandboxRequest extends Object implements com.broadleafcommerce.common.messaging.Securable, Serializable
A message representing a request to the sandbox service to delete the sandbox for a failedBulkUpdate.Note that this class is duplicated in the sandbox service. Any changes made to this class should be propagated there.
- Author:
- Samarth Dhruva (samarthd)
- See Also:
DeleteSandboxRequestProducer,BulkUpdate, Serialized Form
-
-
Constructor Summary
Constructors Constructor Description DeleteSandboxRequest(String sandboxId, String applicationId, String tenantId, String author)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected booleancanEqual(Object other)booleanequals(Object o)StringgetApplicationId()The ID of the application that owns the sandbox.StringgetAuthor()The author of the bulk update (and thus the author who created the sandbox).StringgetSandboxId()The ID of the sandbox that should be deleted.StringgetTenantId()The ID of the tenant that owns the sandbox.StringgetToken()inthashCode()voidsetToken(String token)StringtoString()
-
-
-
Method Detail
-
getSandboxId
public String getSandboxId()
The ID of the sandbox that should be deleted.- See Also:
BulkUpdate.updatingSandboxId
-
getApplicationId
public String getApplicationId()
The ID of the application that owns the sandbox.- See Also:
BulkUpdate.updatingApplicationId
-
getTenantId
public String getTenantId()
The ID of the tenant that owns the sandbox.- See Also:
BulkUpdate.tenantId
-
getAuthor
public String getAuthor()
The author of the bulk update (and thus the author who created the sandbox).- See Also:
BulkUpdate.author
-
getToken
public String getToken()
- Specified by:
getTokenin interfacecom.broadleafcommerce.common.messaging.Securable
-
canEqual
protected boolean canEqual(Object other)
-
setToken
public void setToken(String token)
- Specified by:
setTokenin interfacecom.broadleafcommerce.common.messaging.Securable
-
-