Package pl.edu.icm.unity.engine.api
Interface AttributeClassManagement
public interface AttributeClassManagement
Attribute class management API.
- Author:
- K. Benedyczak
-
Method Summary
Modifier and TypeMethodDescriptionvoidaddAttributeClass(AttributesClass clazz) Defines a new attribute classgetAttributeClass(String name) getEntityAttributeClasses(EntityParam entity, String group) Attribute classes of a given entity in a groupvoidRemoves attribute classvoidsetEntityAttributeClasses(EntityParam entity, String group, Collection<String> classes) Updates the set of entity's attribute classes in a given group.voidupdateAttributeClass(AttributesClass updated) Updates an attribute class.
-
Method Details
-
addAttributeClass
Defines a new attribute class- Parameters:
clazz-- Throws:
EngineException
-
removeAttributeClass
Removes attribute class- Parameters:
id-- Throws:
EngineException
-
updateAttributeClass
Updates an attribute class. The update operation will be successful only if all entities with this class fulfill the updated class rules.- Parameters:
updated- the updated class. Existing class to be updated is matched by name.- Throws:
EngineException
-
getAttributeClasses
- Returns:
- all currently defined
AttributesClasses, keys are ac names. - Throws:
EngineException
-
setEntityAttributeClasses
void setEntityAttributeClasses(EntityParam entity, String group, Collection<String> classes) throws EngineException Updates the set of entity's attribute classes in a given group. The entity must have all the requires attributes set and must not have any disallowed attributes, otherwise the operation will fail.- Parameters:
entity-classes-- Throws:
EngineException
-
getEntityAttributeClasses
Collection<AttributesClass> getEntityAttributeClasses(EntityParam entity, String group) throws EngineException Attribute classes of a given entity in a group- Parameters:
entity-group-- Returns:
- Throws:
EngineException
-
getAttributeClass
- Returns:
- attribute class with given name
- Throws:
EngineException
-