Class Category

java.lang.Object
org.mybatis.jpetstore.domain.Category
All Implemented Interfaces:
Serializable

public class Category extends Object implements Serializable
The Class Category.
Author:
Eduardo Macarron
See Also:
  • Constructor Details

    • Category

      public Category()
  • Method Details

    • getCategoryId

      public String getCategoryId()
      Gets the category id.
      Returns:
      the category id
    • setCategoryId

      public void setCategoryId(String categoryId)
      Sets the category id.
      Parameters:
      categoryId - the category id
    • getName

      public String getName()
      Gets the name.
      Returns:
      the name
    • setName

      public void setName(String name)
      Sets the name.
      Parameters:
      name - the name
    • getDescription

      public String getDescription()
      Gets the description.
      Returns:
      the description
    • setDescription

      public void setDescription(String description)
      Sets the description.
      Parameters:
      description - the description
    • toString

      public String toString()
      Overrides:
      toString in class Object