Class DataNodeDescriptor

    • Field Detail

      • parameters

        protected String parameters
      • adapterType

        protected String adapterType
      • dataSourceFactoryType

        protected String dataSourceFactoryType
      • schemaUpdateStrategyType

        protected String schemaUpdateStrategyType
      • configurationSource

        protected transient Resource configurationSource
    • Constructor Detail

      • DataNodeDescriptor

        public DataNodeDescriptor()
      • DataNodeDescriptor

        public DataNodeDescriptor​(String name)
    • Method Detail

      • setDataChannelDescriptor

        public void setDataChannelDescriptor​(DataChannelDescriptor dataChannelDescriptor)
        Since:
        3.1
      • getName

        public String getName()
      • setName

        public void setName​(String name)
      • getParameters

        public String getParameters()
        Returns extra DataNodeDescriptor parameters. This property is often used by custom DataSourceFactory to configure a DataSource. E.g. JNDIDataSourceFactory may treat parameters String as a JNDI location of the DataSource, etc.
      • setParameters

        public void setParameters​(String parameters)
        Sets extra DataNodeDescriptor parameters. This property is often used by custom DataSourceFactory to configure a DataSource. E.g. JNDIDataSourceFactory may treat parameters String as a JNDI location of the DataSource, etc.
      • getAdapterType

        public String getAdapterType()
      • setAdapterType

        public void setAdapterType​(String adapter)
      • getDataSourceFactoryType

        public String getDataSourceFactoryType()
      • setDataSourceFactoryType

        public void setDataSourceFactoryType​(String dataSourceFactory)
      • getSchemaUpdateStrategyType

        public String getSchemaUpdateStrategyType()
      • setSchemaUpdateStrategyType

        public void setSchemaUpdateStrategyType​(String schemaUpdateStrategyClass)
      • getDataSourceDescriptor

        public DataSourceInfo getDataSourceDescriptor()
      • setDataSourceDescriptor

        public void setDataSourceDescriptor​(DataSourceInfo dataSourceDescriptor)
      • getConfigurationSource

        public Resource getConfigurationSource()
        Returns configuration resource for this descriptor. Configuration is usually shared with the parent DataChannelDescriptor.
      • setConfigurationSource

        public void setConfigurationSource​(Resource configurationResource)
        Sets configuration resource for this descriptor. Configuration is usually shared with the parent DataChannelDescriptor and has to be synchronized when it changes in the parent.