Package org.variantsync.boosting.product
Class VariantInitTask.InitResult
java.lang.Object
org.variantsync.boosting.product.VariantInitTask.InitResult
- Enclosing class:
VariantInitTask
Represents the result of initializing a product.
Contains the ID of the initialization, a set of all features, and the product
associated with the initialization.
-
Field Summary
FieldsModifier and TypeFieldDescriptionfinal CustomHashSet
<Feature> A set of all features associated with the initialization.final int
The ID of the initialization.final Variant
The product associated with the initialization. -
Constructor Summary
ConstructorsConstructorDescriptionInitResult
(int id, CustomHashSet<Feature> allFeatures, Variant variant) Constructs a new InitResult with the specified ID, set of all features, and product. -
Method Summary
-
Field Details
-
id
public final int idThe ID of the initialization. -
allFeatures
A set of all features associated with the initialization. -
variant
The product associated with the initialization.
-
-
Constructor Details
-
InitResult
Constructs a new InitResult with the specified ID, set of all features, and product.- Parameters:
id
- The ID of the initialization.allFeatures
- A set of all features associated with the initialization.variant
- The product associated with the initialization.
-