Package org.apache.cayenne.configuration
Class DataChannelDescriptor
java.lang.Object
org.apache.cayenne.configuration.DataChannelDescriptor
- All Implemented Interfaces:
Serializable
,ConfigurationNode
,XMLSerializable
public class DataChannelDescriptor extends Object implements ConfigurationNode, Serializable, XMLSerializable
A descriptor of a DataChannel normally loaded from XML configuration.
- Since:
- 3.1
- See Also:
- Serialized Form
-
Field Summary
Fields Modifier and Type Field Description protected Resource
configurationSource
protected Collection<DataMap>
dataMaps
protected String
defaultNodeName
protected String
name
protected Collection<DataNodeDescriptor>
nodeDescriptors
protected Map<String,String>
properties
static String
SCHEMA_XSD
The namespace in which the data map XML file will be created.static String
SCHEMA_XSD_LOCATION
-
Constructor Summary
Constructors Constructor Description DataChannelDescriptor()
-
Method Summary
Modifier and Type Method Description <T> T
acceptVisitor(ConfigurationNodeVisitor<T> visitor)
void
encodeAsXML(XMLEncoder encoder, ConfigurationNodeVisitor delegate)
Prints itself as XML to the provided XMLEncoder.Resource
getConfigurationSource()
DataMap
getDataMap(String name)
Collection<DataMap>
getDataMaps()
String
getDefaultNodeName()
Returns the name of the DataNode that should be used as the default if a DataMap is not explicitly linked to a node.String
getName()
DataNodeDescriptor
getNodeDescriptor(String name)
Collection<DataNodeDescriptor>
getNodeDescriptors()
Map<String,String>
getProperties()
void
setConfigurationSource(Resource configurationSource)
void
setDefaultNodeName(String defaultDataNodeName)
void
setName(String name)
-
Field Details
-
SCHEMA_XSD
The namespace in which the data map XML file will be created.- See Also:
- Constant Field Values
-
SCHEMA_XSD_LOCATION
- See Also:
- Constant Field Values
-
name
-
properties
-
dataMaps
-
nodeDescriptors
-
configurationSource
-
defaultNodeName
-
-
Constructor Details
-
DataChannelDescriptor
public DataChannelDescriptor()
-
-
Method Details
-
encodeAsXML
Description copied from interface:XMLSerializable
Prints itself as XML to the provided XMLEncoder.- Specified by:
encodeAsXML
in interfaceXMLSerializable
-
acceptVisitor
- Specified by:
acceptVisitor
in interfaceConfigurationNode
-
getName
-
setName
-
getProperties
-
getDataMaps
-
getDataMap
-
getNodeDescriptors
-
getNodeDescriptor
-
getConfigurationSource
-
setConfigurationSource
-
getDefaultNodeName
Returns the name of the DataNode that should be used as the default if a DataMap is not explicitly linked to a node. -
setDefaultNodeName
-