Class XmlDomainDS
java.lang.Object
com.aquima.interactions.foundation.report.ReportingDS
com.aquima.interactions.metamodel.ds.xml.parsing.XmlDomainDS
- All Implemented Interfaces:
IReportingDS
,IDomainDS
Xml datasource implementation.
- Since:
- 7.2
- Author:
- Jon van Leuven
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionboolean
This method specifies if the domain should allow the datasource to return an empty set of domain values.The data type of the domain.This method returns the (optional) description of the domain.getName()
This method should return the unique name of the domain.boolean
This method returns a boolean indicating if the values for the domain will be provided by an external source.void
iterateValues
(IDomainValueVisitor visitor) This method should iterate over all values that are valid in the domain, and invoke the visitor for each one of them.Methods inherited from class com.aquima.interactions.foundation.report.ReportingDS
addError, addMessage, getCategory, getReport
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface com.aquima.interactions.foundation.report.IReportingDS
addMessage
-
Constructor Details
-
XmlDomainDS
-
-
Method Details
-
allowEmptyDomain
public boolean allowEmptyDomain()Description copied from interface:IDomainDS
This method specifies if the domain should allow the datasource to return an empty set of domain values. By default this method should return false, as a domain without any valid values will not allow any value for the attributes the domain is assigned to. During development this method may however return the value true to indicate that an empty domain is allowed. When an empty domain is encountered and this method returns true for that domain, a warning will be generated indicating that the domain should be fixed.- Specified by:
allowEmptyDomain
in interfaceIDomainDS
- Returns:
- Boolean indicating if an empty domain is allowed.
-
getDataType
Description copied from interface:IDomainDS
The data type of the domain. The domain can only be active for attributes that share the same type, and all values of this domain will need to be of the same data type.- Specified by:
getDataType
in interfaceIDomainDS
- Returns:
- The type of the values of this domain.
-
getDescription
Description copied from interface:IDomainDS
This method returns the (optional) description of the domain.- Specified by:
getDescription
in interfaceIDomainDS
- Returns:
- Description of the domain. (only used for informational purposes)
-
getName
Description copied from interface:IDomainDS
This method should return the unique name of the domain. -
isExternalDomain
public boolean isExternalDomain()Description copied from interface:IDomainDS
This method returns a boolean indicating if the values for the domain will be provided by an external source. The boolean is used mainly for validation purposes, as an external domain will not have any values during definition in studio.- Specified by:
isExternalDomain
in interfaceIDomainDS
- Returns:
- a boolean indicating if the values for the domain will be provided by an external source.
-
iterateValues
Description copied from interface:IDomainDS
This method should iterate over all values that are valid in the domain, and invoke the visitor for each one of them.- Specified by:
iterateValues
in interfaceIDomainDS
- Parameters:
visitor
- The visitor that the domain values should be added to.- Throws:
InitializationException
- Thrown when there was an error while processing the domain values.
-