Class CreateSandboxRequest
- java.lang.Object
-
- com.broadleafcommerce.bulk.messaging.CreateSandboxRequest
-
- All Implemented Interfaces:
com.broadleafcommerce.common.messaging.Securable,Serializable
public class CreateSandboxRequest extends Object implements com.broadleafcommerce.common.messaging.Securable, Serializable
A message representing a request to the sandbox service to create a given sandbox. This is mainly used by bulk updates and imports.Note that this class is duplicated in the sandbox and import services. Any changes made to this class should be propagated there.
- Author:
- Samarth Dhruva (samarthd)
- See Also:
CreateSandboxRequestProducer,BulkUpdate, Serialized Form
-
-
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 should be set as the owning application of the sandbox.StringgetDescription()The description for the sandbox that should be created.StringgetSandboxId()The ID of the sandbox that should be created.StringgetSandboxName()The name of the sandbox that should be created.StringgetTenantId()The ID of the tenant that should be set as the owning tenant of the sandbox.StringgetToken()inthashCode()voidsetToken(String token)StringtoString()
-
-
-
Method Detail
-
getDescription
public String getDescription()
The description for the sandbox that should be created.
-
getSandboxId
public String getSandboxId()
The ID of the sandbox that should be created.- See Also:
BulkUpdate.updatingSandboxId
-
getSandboxName
public String getSandboxName()
The name of the sandbox that should be created.- See Also:
BulkUpdate.updatingSandboxName
-
getApplicationId
public String getApplicationId()
The ID of the application that should be set as the owning application of the sandbox.- See Also:
BulkUpdate.updatingApplicationId
-
getTenantId
public String getTenantId()
The ID of the tenant that should be set as the owning tenant of the sandbox.- See Also:
BulkUpdate.tenantId
-
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
-
-