Package org.mule.metadata.api.model
Interface AttributeFieldType
-
- All Superinterfaces:
MetadataType
- All Known Implementing Classes:
DefaultAttributeFieldType
public interface AttributeFieldType extends MetadataType
Represents an Object Key attribute.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description AttributeKeyTypegetKey()The key of the attribute.MetadataTypegetValue()The value of the attributebooleanisRequired()If this attribute is required or not.-
Methods inherited from interface org.mule.metadata.api.model.MetadataType
accept, getAnnotation, getAnnotations, getDescription, getMetadataFormat
-
-
-
-
Method Detail
-
getKey
AttributeKeyType getKey()
The key of the attribute.- Returns:
- The attribute key.
-
getValue
MetadataType getValue()
The value of the attribute- Returns:
- The value
-
isRequired
boolean isRequired()
If this attribute is required or not.- Returns:
- True if required.
-
-