Class DefaultCustomSchemaElementFactory
java.lang.Object
com.aquima.interactions.framework.communication.DefaultCustomSchemaElementFactory
- All Implemented Interfaces:
ICustomSchemaElementFactory
,Serializable
public class DefaultCustomSchemaElementFactory
extends Object
implements ICustomSchemaElementFactory
The default schema composer factory that provides implementations for the schema composers that come bundled with the
aquima runtime.
- Since:
- 9.0
- Author:
- Jon van Leuven
- See Also:
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptiongetCustomSchemaElement
(String name) This method returns the custom schema element implementation for the given name.
-
Constructor Details
-
DefaultCustomSchemaElementFactory
public DefaultCustomSchemaElementFactory()
-
-
Method Details
-
getCustomSchemaElement
Description copied from interface:ICustomSchemaElementFactory
This method returns the custom schema element implementation for the given name.- Specified by:
getCustomSchemaElement
in interfaceICustomSchemaElementFactory
- Parameters:
name
- The name, may not be null.- Returns:
- The implementation, never null.
- Throws:
UnknownCustomSchemaElement
- Is thrown when there is no implementation available for the given name.
-