Package com.hybris.merchandising.model
Class Category
- java.lang.Object
-
- com.hybris.merchandising.model.Category
-
public class Category extends java.lang.ObjectCategory is a POJO representing a Category within Hybris EC.
-
-
Constructor Summary
Constructors Constructor Description Category()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetId()java.lang.StringgetName()voidsetId(java.lang.String id)voidsetName(java.lang.String name)
-
-
-
Method Detail
-
getId
public java.lang.String getId()
- Returns:
- the id, this is the identifier of the category.
-
setId
public void setId(java.lang.String id)
- Parameters:
id- the id to set, this is the identifier of the category.
-
getName
public java.lang.String getName()
- Returns:
- the name, this is the name of the category.
-
setName
public void setName(java.lang.String name)
- Parameters:
name- the name to set, this is the name of the category.
-
-