Interface ClassificationAttributeValueService
-
- All Known Implementing Classes:
DefaultClassificationAttributeValueService
public interface ClassificationAttributeValueServiceProvides operations to interact withClassificationAttributeValueModels
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ClassificationAttributeValueModelcreate(ClassificationSystemVersionModel systemVersion, java.lang.String valueCode)Creates theClassificationAttributeValueModelwith the given system version and codejava.util.Optional<ClassificationAttributeValueModel>find(ClassificationSystemVersionModel systemVersion, java.lang.String valueCode)Finds theClassificationAttributeValueModelby the given system version and code
-
-
-
Method Detail
-
find
java.util.Optional<ClassificationAttributeValueModel> find(ClassificationSystemVersionModel systemVersion, java.lang.String valueCode)
Finds theClassificationAttributeValueModelby the given system version and code- Parameters:
systemVersion- System version the attribute value is associated withvalueCode- The code of the attribute value to find- Returns:
- Optional contains the result if the attribute value exists, otherwise
Optional.empty()
-
create
ClassificationAttributeValueModel create(ClassificationSystemVersionModel systemVersion, java.lang.String valueCode)
Creates theClassificationAttributeValueModelwith the given system version and code- Parameters:
systemVersion- System version the attribute value is associated withvalueCode- The code of the attribute to create- Returns:
- The created attribute value
-
-