ProductStatus.java

package com.ecommerce.catalog.domain;

public enum ProductStatus {
    DRAFT,
    ACTIVE,
    INACTIVE
}