Class ComponentAugmentationPayload
- java.lang.Object
-
- com.broadleafcommerce.metadata.core.payload.ComponentAugmentationPayload
-
- Direct Known Subclasses:
FieldAugmentationPayload
,GroupAugmentationPayload
public class ComponentAugmentationPayload extends Object
Contains the base information about the augmentation for the components.- Author:
- Dima Myroniuk (dmyroniuk)
-
-
Constructor Summary
Constructors Constructor Description ComponentAugmentationPayload()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Map<String,Object>
getAttributes()
String
getAugmentationKey()
String
getClassifier()
String
getId()
String
getLabel()
Integer
getOrder()
Boolean
getTranslatable()
String
getType()
void
setAttributes(Map<String,Object> attributes)
void
setAugmentationKey(String augmentationKey)
void
setClassifier(String classifier)
void
setId(String id)
void
setLabel(String label)
void
setOrder(Integer order)
void
setTranslatable(Boolean translatable)
void
setType(String type)
-
-
-
Method Detail
-
getId
public String getId()
-
getClassifier
public String getClassifier()
-
getType
public String getType()
-
getLabel
public String getLabel()
-
getOrder
public Integer getOrder()
-
getTranslatable
public Boolean getTranslatable()
-
getAugmentationKey
public String getAugmentationKey()
-
setId
public void setId(String id)
-
setClassifier
public void setClassifier(String classifier)
-
setType
public void setType(String type)
-
setLabel
public void setLabel(String label)
-
setOrder
public void setOrder(Integer order)
-
setTranslatable
public void setTranslatable(Boolean translatable)
-
setAugmentationKey
public void setAugmentationKey(String augmentationKey)
-
-